GdxMapApp: reduce default size

This commit is contained in:
Emux 2016-06-25 15:15:23 +03:00
parent 7b00161184
commit bbdc431b9a

View File

@ -1,5 +1,6 @@
/*
* Copyright 2013 Hannes Janetzek
* Copyright 2016 devemux86
*
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
*
@ -62,8 +63,8 @@ public class GdxMapApp extends GdxMap {
static protected JglfwApplicationConfiguration getConfig() {
JglfwApplicationConfiguration cfg = new JglfwApplicationConfiguration();
cfg.title = "vtm-gdx";
cfg.width = 1280;
cfg.height = 800;
cfg.width = 800;
cfg.height = 600;
cfg.stencil = 8;
//cfg.samples = 2;
cfg.foregroundFPS = 30;