From 229494766068e9bfb518e596e18d6f8413df3ff5 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 26 Feb 2020 23:42:41 +0100 Subject: [PATCH] Update core_storage_values.c --- examples/core/core_storage_values.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/core/core_storage_values.c b/examples/core/core_storage_values.c index fbbbc5284..df757a4fd 100644 --- a/examples/core/core_storage_values.c +++ b/examples/core/core_storage_values.c @@ -43,14 +43,14 @@ int main(void) if (IsKeyPressed(KEY_ENTER)) { - StorageSaveValue(STORAGE_SCORE, score); - StorageSaveValue(STORAGE_HISCORE, hiscore); + SaveStorageValue(STORAGE_SCORE, score); + SaveStorageValue(STORAGE_HISCORE, hiscore); } else if (IsKeyPressed(KEY_SPACE)) { // NOTE: If requested position could not be found, value 0 is returned - score = StorageLoadValue(STORAGE_SCORE); - hiscore = StorageLoadValue(STORAGE_HISCORE); + score = LoadStorageValue(STORAGE_SCORE); + hiscore = LoadStorageValue(STORAGE_HISCORE); } framesCounter++;