Minor SDL CLI fixes.

This commit is contained in:
jeblanchard 2008-06-04 22:04:44 +00:00
parent 9f7ea702a6
commit 432c0c18d9
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ InitConfig()
// OpenGL options
config->addOption("opengl", "SDL.OpenGL", 0);
config->addOption("SDL.OpenGLip", 0);
config->addOption("openglip", "SDL.OpenGLip", 0);
config->addOption("SDL.SpecialFilter", 0);
config->addOption("SDL.SpecialFX", 0);

View File

@ -214,7 +214,7 @@ InitOpenGL(int l,
if((efx&2) || !extensions || !p_glColorTableEXT || !strstr(extensions,"GL_EXT_paletted_texture"))
{
if(!(efx&2)) // Don't want to print out a warning message in this case...
FCEU_printf("Paletted texture extension not found. Using slower texture format...");
FCEU_printf("Paletted texture extension not found. Using slower texture format...\n");
HiBuffer=malloc(4*256*256);
memset(HiBuffer,0x00,4*256*256);
#ifndef LSB_FIRST