summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-26 23:40:53 +0100
committerRay <[email protected]>2020-02-26 23:40:53 +0100
commite5b5aea998229afb50b08f340700dc9a5eb4e7be (patch)
tree41e0d4e16466203928e1e938eae8d23b2ac5660d /src/raylib.h
parentfadd74358b006de84c94315fdbaf8d7d16af0096 (diff)
downloadraylib-e5b5aea998229afb50b08f340700dc9a5eb4e7be.tar.gz
raylib-e5b5aea998229afb50b08f340700dc9a5eb4e7be.zip
WARNING: RENAMED: Storage functions
Renamed functions for consistency: - StorageLoadValue() > LoadStorageValue() - StorageSaveValue() > SaveStorageValue()
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h
index e6ba4525..23ad8767 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -972,8 +972,8 @@ RLAPI unsigned char *CompressData(unsigned char *data, int dataLength, int *comp
RLAPI unsigned char *DecompressData(unsigned char *compData, int compDataLength, int *dataLength); // Decompress data (DEFLATE algorythm)
// Persistent storage management
-RLAPI void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position)
-RLAPI int StorageLoadValue(int position); // Load integer value from storage file (from defined position)
+RLAPI void SaveStorageValue(int position, int value); // Save integer value to storage file (to defined position)
+RLAPI int LoadStorageValue(int position); // Load integer value from storage file (from defined position)
RLAPI void OpenURL(const char *url); // Open URL with default system browser (if available)