Remove unnecessary cast in PicoLoadFunc

This commit is contained in:
Jay Dolan 2018-02-02 07:14:31 -05:00
parent c655d234d5
commit 8a4815d63b

View file

@ -88,7 +88,7 @@ void PicoPrintFunc( int level, const char *str ){
} }
void PicoLoadFileFunc( const 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( name, (void**) buffer, 0 );
} }
void PicoFreeFileFunc( void* file ){ void PicoFreeFileFunc( void* file ){