scons: unset public release bit
sdl: fix typo that referenced '-opengl'; '--opengl' is used
This commit is contained in:
parent
3fef7971b3
commit
db78090cbc
|
@ -34,8 +34,8 @@ prefix = GetOption('prefix')
|
|||
env = Environment(options = opts)
|
||||
|
||||
#### Uncomment this for a public release ###
|
||||
env.Append(CPPDEFINES=["PUBLIC_RELEASE"])
|
||||
env['DEBUG'] = 0
|
||||
#env.Append(CPPDEFINES=["PUBLIC_RELEASE"])
|
||||
#env['DEBUG'] = 0
|
||||
############################################
|
||||
|
||||
# LSB_FIRST must be off for PPC to compile
|
||||
|
|
|
@ -240,7 +240,7 @@ InitVideo(FCEUGI *gi)
|
|||
// enable double buffering if requested and we have hardware support
|
||||
#ifdef OPENGL
|
||||
if(s_useOpenGL) {
|
||||
FCEU_printf("Initializing with OpenGL (Disable with '-opengl 0').\n");
|
||||
FCEU_printf("Initializing with OpenGL (Disable with '--opengl 0').\n");
|
||||
if(doublebuf) {
|
||||
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue