From 8ab6b208156c48487865ef66bc8d178d076b5027 Mon Sep 17 00:00:00 2001 From: Godzil Date: Fri, 9 Apr 2021 23:09:22 +0100 Subject: [PATCH] Fix a mistake in loading SRAM/EEP file name --- source/ws.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ws.c b/source/ws.c index 830a831..ce07b91 100644 --- a/source/ws.c +++ b/source/ws.c @@ -109,7 +109,7 @@ int ws_init(char *rompath) ws_memory_init(rom, romSize); ws_patchRom(); - ws_staticRam = (uint8_t *)load_file(ws_ieep_path); + ws_staticRam = (uint8_t *)load_file(ws_sram_path); if (ws_staticRam == NULL) { ws_staticRam = (uint8_t *)create_file(ws_sram_path, 0x10000);