summaryrefslogtreecommitdiff
path: root/macosx
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-01-16 10:54:33 +0100
committerKonstantin Käfer <mail@kkaefer.com>2014-01-16 10:54:33 +0100
commit8fd762b5f3c437beee60c7124e30f6994a6fcb3a (patch)
tree96c87a7ec2e40fc0e514627bc910fb6ab49cdf5c /macosx
parent2d008787fc113bf352674b7a1c7e57f47f8a635f (diff)
downloadqtlocation-mapboxgl-8fd762b5f3c437beee60c7124e30f6994a6fcb3a.tar.gz
use larger window by default
Diffstat (limited to 'macosx')
-rw-r--r--macosx/main.mm2
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");