From ee16e35bb6c86323d69937992e34ac214e2005c2 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 19 Feb 2009 02:04:31 +0000 Subject: - Fix finding versions from exe's - Fix fallback detection - Make getVersion() return an int instead of a uint16 which makes the version lose precision and the "major" version can get lost. svn-id: r38529 --- engines/sci/scicore/exe_raw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci/scicore/exe_raw.cpp') 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) -- cgit v1.2.3