Fix OS X compile error for pico function prototype.

This commit is contained in:
Jay Dolan 2018-02-01 12:01:50 -05:00
parent 49a90dca7e
commit c655d234d5

View file

@ -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 );
}