This commit is contained in:
waltje
2017-10-03 16:33:01 -04:00
parent 633adc6b02
commit 9d2d7b1c32

View File

@@ -35,7 +35,7 @@ static uint8_t jim_load_nvr(void)
{ {
FILE *f; FILE *f;
f = nvrfopen(L"europc_jim.nvr", L"rb"); f = nvr_fopen(L"europc_jim.nvr", L"rb");
if (f) if (f)
{ {
fread(europcdat, 1, 16, f); fread(europcdat, 1, 16, f);
@@ -52,7 +52,7 @@ void europc_save_nvr(void)
{ {
FILE *f; FILE *f;
f = nvrfopen(L"europc_jim.nvr", L"wb"); f = nvr_fopen(L"europc_jim.nvr", L"wb");
if (f) if (f)
{ {
fwrite(europcdat, 1, 16, f); fwrite(europcdat, 1, 16, f);