fixed mac render glitch, flipped visualizer

This commit is contained in:
2017-09-22 10:26:36 -05:00
parent d64dc8a4d1
commit 307e118b3a
5 changed files with 29 additions and 9 deletions

View File

@@ -10,6 +10,9 @@ public class DesktopLauncher {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.title = "Rhythm Bullet";
config.resizable = false;
config.allowSoftwareMode = true;
config.useHDPI = true;
config.vSyncEnabled = true;
new LwjglApplication(new RhythmBullet(), config);
}
}