GdxMapApp: reduce default fps

This commit is contained in:
Hannes Janetzek 2014-10-20 20:10:02 +02:00
parent b1cfdfd454
commit da93f0ab72

View File

@ -66,7 +66,8 @@ public class GdxMapApp extends GdxMap {
cfg.height = 800;
cfg.stencil = 8;
//cfg.samples = 2;
cfg.foregroundFPS = 60;
cfg.foregroundFPS = 30;
cfg.backgroundFPS = 10;
return cfg;
}