diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-01-16 10:54:33 +0100 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-01-16 10:54:33 +0100 |
commit | 8fd762b5f3c437beee60c7124e30f6994a6fcb3a (patch) | |
tree | 96c87a7ec2e40fc0e514627bc910fb6ab49cdf5c /macosx/main.mm | |
parent | 2d008787fc113bf352674b7a1c7e57f47f8a635f (diff) | |
download | qtlocation-mapboxgl-8fd762b5f3c437beee60c7124e30f6994a6fcb3a.tar.gz |
use larger window by default
Diffstat (limited to 'macosx/main.mm')
-rw-r--r-- | macosx/main.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/main.mm b/macosx/main.mm index 4f2bfec148..ba75d1b35c 100644 --- a/macosx/main.mm +++ b/macosx/main.mm @@ -23,7 +23,7 @@ public: glfwWindowHint(GLFW_STENCIL_BITS, 8); glfwWindowHint(GLFW_DEPTH_BITS, 16); - window = glfwCreateWindow(640, 480, "llmr", NULL, NULL); + window = glfwCreateWindow(1024, 768, "llmr", NULL, NULL); if (!window) { glfwTerminate(); fprintf(stderr, "Failed to initialize window\n"); |