Fix ExportDataAsCode() data types (#2787)

This commit is contained in:
RGDTAB 2022-11-04 15:39:04 -04:00 committed by GitHub
parent 1cb81e3f4c
commit dbdfad7ace
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -270,7 +270,7 @@ bool SaveFileData(const char *fileName, void *data, unsigned int bytesToWrite)
}
// Export data to code (.h), returns true on success
bool ExportDataAsCode(const char *data, unsigned int size, const char *fileName)
bool ExportDataAsCode(const unsigned char *data, unsigned int size, const char *fileName)
{
bool success = false;