warning msg for not on debug mode

This commit is contained in:
minjaesong
2020-09-09 09:22:24 +09:00
parent dd1989320d
commit 28369f8eeb
13 changed files with 15 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -1,4 +1,4 @@
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -2,7 +2,7 @@
*/
#version 120
#version 130
#ifdef GL_ES
precision mediump float;
#endif

View File

@@ -344,7 +344,9 @@ public class AppLoader implements ApplicationListener {
// safe area box
//KeyToggler.INSTANCE.forceSet(Input.Keys.F11, true);
}
else {
System.err.println("Game not started using DEBUG MODE -- current build of the game will display black screen without debug mode");
}
// set some more configuration vars
MULTITHREAD = ThreadParallel.INSTANCE.getThreadCount() >= 3 && getConfigBoolean("multithread");