Don't go through UTF8fopen wrapper function

This commit is contained in:
twinaphex
2014-12-08 22:23:26 +01:00
parent 8b8e7fd699
commit 4addc7d461
3 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ FCEUFILE * FCEU_fopen(const char *path, const char *ipsfn, char *mode, char *ext
void *t;
FCEUFILE *fceufp = (FCEUFILE*)malloc(sizeof(FCEUFILE));
if ((t = FCEUD_UTF8fopen(path, mode)))
if ((t = fopen(path, mode)))
{
fseek((FILE*)t, 0, SEEK_SET);
fceufp->type = 0;