make radiant compile again

This commit is contained in:
rpolzer 2010-10-05 11:05:24 +02:00
parent 5ec3a47e10
commit c34227108a

View File

@ -74,9 +74,9 @@ 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);
*bufSize = vfsLoadFile( name, (void**) buffer);
}
void PicoFreeFileFunc( void* file )