fix minor warning
[drnoksnes] / gfx.h
diff --git a/gfx.h b/gfx.h
index 85b4416..dd23335 100644 (file)
--- a/gfx.h
+++ b/gfx.h
@@ -82,7 +82,7 @@ struct SGFX {
     uint8  r212d;
     uint8  r2130;
     uint8  r2131;
-    bool8_32  Pseudo;
+    bool8  Pseudo;
     
 #ifdef GFX_MULTI_FORMAT
     uint32 PixelFormat;
@@ -119,7 +119,7 @@ struct SBG
     
        uint8 *Buffer;
     uint8 *Buffered;
-    bool8_32  DirectColourMode;
+    bool8  DirectColourMode;
 };
 
 struct SLineMatrixData
@@ -225,16 +225,18 @@ void S9xBuildDirectColourMaps ();
 // port.
 extern struct SGFX GFX;
 
-bool8_32 S9xGraphicsInit ();
+bool8 S9xGraphicsInit ();
 void S9xGraphicsDeinit();
-bool8_32 S9xInitUpdate (void);
-bool8_32 S9xDeinitUpdate (int Width, int Height);
+bool8 S9xInitUpdate (void);
+bool8 S9xDeinitUpdate (int Width, int Height);
 void S9xSyncSpeed ();
 
 #ifdef GFX_MULTI_FORMAT
-bool8_32 S9xSetRenderPixelFormat (int format);
+bool8 S9xSetRenderPixelFormat (int format);
 #endif
 
+void S9xSetInfoString(const char * fmt, ...);
+
 END_EXTERN_C
 
 #endif