aboutsummaryrefslogtreecommitdiff
path: root/source/spc7110.c
diff options
context:
space:
mode:
authoraliaspider2014-11-02 07:52:33 +0100
committeraliaspider2014-11-02 07:52:33 +0100
commit79a0fe978c6eece18d2e05320d6c86de584dbb48 (patch)
treea766b67e5ba37cd8bca19d15b3021af5cde2026a /source/spc7110.c
parentd2c9eb147defae3d98df43730372dfce4a224cde (diff)
downloadsnesemu-79a0fe978c6eece18d2e05320d6c86de584dbb48.tar.gz
snesemu-79a0fe978c6eece18d2e05320d6c86de584dbb48.tar.bz2
snesemu-79a0fe978c6eece18d2e05320d6c86de584dbb48.zip
cleanups.
Diffstat (limited to 'source/spc7110.c')
-rw-r--r--source/spc7110.c4
1 files changed, 2 insertions, 2 deletions
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++)