storage: SDL_WriteStorageFile() wasn't marked as SDLCALL.

Fixes #9594.
This commit is contained in:
Ryan C. Gordon
2024-04-21 09:26:07 -04:00
parent c623bd2fdc
commit 7a36504952
4 changed files with 4 additions and 1 deletions

View File

@@ -252,7 +252,7 @@ extern DECLSPEC int SDLCALL SDL_ReadStorageFile(SDL_Storage *storage, const char
* \sa SDL_ReadStorageFile
* \sa SDL_StorageReady
*/
extern DECLSPEC int SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length);
extern DECLSPEC int SDLCALL SDL_WriteStorageFile(SDL_Storage *storage, const char *path, const void *source, Uint64 length);
/**
* Create a directory in a writable storage container.