mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-25 02:41:22 +00:00
Fix OS X compile error for pico function prototype.
This commit is contained in:
parent
49a90dca7e
commit
c655d234d5
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ void PicoPrintFunc( int level, const char *str ){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void PicoLoadFileFunc( char *name, byte **buffer, int *bufSize ){
|
void PicoLoadFileFunc( const char *name, byte **buffer, int *bufSize ){
|
||||||
*bufSize = vfsLoadFile( (const char*) name, (void**) buffer, 0 );
|
*bufSize = vfsLoadFile( (const char*) name, (void**) buffer, 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue