From 79a0fe978c6eece18d2e05320d6c86de584dbb48 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Sun, 2 Nov 2014 07:52:33 +0100 Subject: cleanups. --- source/spc7110.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/spc7110.c') diff --git a/source/spc7110.c b/source/spc7110.c index a53198c..4285cb3 100644 --- a/source/spc7110.c +++ b/source/spc7110.c @@ -2240,7 +2240,7 @@ bool8 S9xSaveSPC7110RTC(S7RTC* rtc_f9) { FILE* fp; - if ((fp = fopen(S9xGetFilename(".rtc"), "wb")) == NULL) + if ((fp = fopen(S9xGetFilename("rtc"), "wb")) == NULL) return (FALSE); int i = 0; uint8 temp = 0; @@ -2270,7 +2270,7 @@ bool8 S9xLoadSPC7110RTC(S7RTC* rtc_f9) { FILE* fp; - if ((fp = fopen(S9xGetFilename(".rtc"), "rb")) == NULL) + if ((fp = fopen(S9xGetFilename("rtc"), "rb")) == NULL) return (FALSE); int i; for (i = 0; i < 16; i++) -- cgit v1.2.3