FIX compiler error

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@444 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
spacy51 2008-03-03 15:17:51 +00:00
parent df2d176b37
commit 5f45c995ab
2 changed files with 8 additions and 4 deletions

View File

@ -34,6 +34,9 @@ int systemColorDepth = 32;
int systemDebug = 0;
int systemVerbose = 0;
void (*dbgSignal)( int sig, int number ) = debuggerSignal;
void (*dbgOutput)( const char *s, u32 addr ) = debuggerOutput;
bool systemReadJoypads()
{
@ -117,13 +120,13 @@ bool systemPauseOnFrame()
}
void dbgOutput( const char *s, u32 addr )
void debuggerOutput( const char *s, u32 addr )
{
// TODO: implement
}
void dbgSignal( int sig,int number )
void debuggerSignal( int sig,int number )
{
// TODO: implement
}

View File

@ -47,10 +47,11 @@ int systemGetSensorY();
u32 systemGetClock();
void systemMessage( int number, const char *defaultMsg, ... );
void dbgOutput( const char *s, u32 addr );
void dbgSignal( int sig,int number );
void winlog( const char *msg, ... );
void debuggerSignal( int sig,int number );
void debuggerOutput( const char *s, u32 addr );
bool systemPauseOnFrame();
void systemScreenCapture( int captureNumber );
void systemDrawScreen();