mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-16 16:28:14 +00:00
ADDED: Some functions...
text: IsEqualText() -WIP- audio: SaveWAV() audio: ExportWaveAsCode() textures: ExportImageAsCode()
This commit is contained in:
@@ -1766,11 +1766,11 @@ void StorageSaveValue(int position, int value)
|
||||
int fileSize = ftell(storageFile); // Size in bytes
|
||||
fseek(storageFile, 0, SEEK_SET);
|
||||
|
||||
if (fileSize < (position*4)) TraceLog(LOG_WARNING, "Storage position could not be found");
|
||||
if (fileSize < (position*sizeof(int))) TraceLog(LOG_WARNING, "Storage position could not be found");
|
||||
else
|
||||
{
|
||||
fseek(storageFile, (position*4), SEEK_SET);
|
||||
fwrite(&value, 1, 4, storageFile);
|
||||
fseek(storageFile, (position*sizeof(int)), SEEK_SET);
|
||||
fwrite(&value, 1, sizeof(int), storageFile);
|
||||
}
|
||||
|
||||
fclose(storageFile);
|
||||
|
Reference in New Issue
Block a user