diff options
| author | RGDTAB <[email protected]> | 2022-11-04 15:39:04 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-04 20:39:04 +0100 |
| commit | dbdfad7ace061931da701070c5c7fbe772c57725 (patch) | |
| tree | 70f5c30e8b03f9c27d63e044587e5498e6558528 /src/utils.c | |
| parent | 1cb81e3f4c30479d2d5e2194e7bf332ded750554 (diff) | |
| download | raylib-dbdfad7ace061931da701070c5c7fbe772c57725.tar.gz raylib-dbdfad7ace061931da701070c5c7fbe772c57725.zip | |
Fix ExportDataAsCode() data types (#2787)
Diffstat (limited to 'src/utils.c')
| -rw-r--r-- | src/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 208a483a..b165449b 100644 --- a/src/utils.c +++ b/src/utils.c @@ -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; |
