1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Correct Persistent spelling

This commit is contained in:
Ethan O'Brien
2025-01-17 09:33:05 -06:00
parent b4d72427ff
commit f7ca73c6eb
3 changed files with 44 additions and 16 deletions

View File

@@ -49,8 +49,8 @@
#ifdef __EMSCRIPTEN__
#include <emscripten.h>
extern "C" {
extern void ExportPersistantData();
extern void ImportPersistantData();
extern void ExportPersistentData();
extern void ImportPersistentData();
}
#endif
@@ -1991,10 +1991,10 @@ namespace OpenRCT2::Ui::Windows
break;
#ifdef __EMSCRIPTEN__
case WIDX_EXPORT_EMSCRIPTEN_DATA:
ExportPersistantData();
ExportPersistentData();
break;
case WIDX_IMPORT_EMSCRIPTEN_DATA:
ImportPersistantData();
ImportPersistentData();
break;
#endif
}