mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 03:51:18 +00:00
Remove unnecessary cast in PicoLoadFunc
This commit is contained in:
parent
c655d234d5
commit
8a4815d63b
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ void PicoPrintFunc( int level, const char *str ){
|
|||
}
|
||||
|
||||
void PicoLoadFileFunc( const char *name, byte **buffer, int *bufSize ){
|
||||
*bufSize = vfsLoadFile( (const char*) name, (void**) buffer, 0 );
|
||||
*bufSize = vfsLoadFile( name, (void**) buffer, 0 );
|
||||
}
|
||||
|
||||
void PicoFreeFileFunc( void* file ){
|
||||
|
|
Loading…
Reference in a new issue