aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/scicore
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/scicore')
-rw-r--r--engines/sci/scicore/exe_lzexe.cpp2
-rw-r--r--engines/sci/scicore/exe_raw.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/scicore/exe_lzexe.cpp b/engines/sci/scicore/exe_lzexe.cpp
index a8876b3bc5..a7a1c31a08 100644
--- a/engines/sci/scicore/exe_lzexe.cpp
+++ b/engines/sci/scicore/exe_lzexe.cpp
@@ -217,7 +217,7 @@ lzexe_open(const char *filename) {
guint8 size[2];
off_t fpos;
- FILE *f = sci_fopen(filename, "rb");
+ FILE *f = fopen(filename, "rb");
if (!f)
return NULL;
diff --git a/engines/sci/scicore/exe_raw.cpp b/engines/sci/scicore/exe_raw.cpp
index 17d46f524f..69daaca45f 100644
--- a/engines/sci/scicore/exe_raw.cpp
+++ b/engines/sci/scicore/exe_raw.cpp
@@ -33,7 +33,7 @@ struct _exe_handle {
static exe_handle_t *
raw_open(const char *filename) {
- FILE *f = sci_fopen(filename, "rb");
+ FILE *f = fopen(filename, "rb");
exe_handle_t *handle;
if (!f)