From 9d2d7b1c320a4d17809a8f5748a4cea5c899cacf Mon Sep 17 00:00:00 2001 From: waltje Date: Tue, 3 Oct 2017 16:33:01 -0400 Subject: [PATCH] Whoops. --- src/machine/machine_europc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/machine_europc.c b/src/machine/machine_europc.c index 0413ecf1a..74b7c7a1e 100644 --- a/src/machine/machine_europc.c +++ b/src/machine/machine_europc.c @@ -35,7 +35,7 @@ static uint8_t jim_load_nvr(void) { FILE *f; - f = nvrfopen(L"europc_jim.nvr", L"rb"); + f = nvr_fopen(L"europc_jim.nvr", L"rb"); if (f) { fread(europcdat, 1, 16, f); @@ -52,7 +52,7 @@ void europc_save_nvr(void) { FILE *f; - f = nvrfopen(L"europc_jim.nvr", L"wb"); + f = nvr_fopen(L"europc_jim.nvr", L"wb"); if (f) { fwrite(europcdat, 1, 16, f);