diff --git a/SConstruct b/SConstruct index e6f88341..70cab20e 100644 --- a/SConstruct +++ b/SConstruct @@ -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 diff --git a/src/drivers/sdl/sdl-video.cpp b/src/drivers/sdl/sdl-video.cpp index 5f45cf44..f7577766 100644 --- a/src/drivers/sdl/sdl-video.cpp +++ b/src/drivers/sdl/sdl-video.cpp @@ -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); }