From 64a3f11f7a310a6677741673eeb051769f65f5d2 Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Sun, 21 Nov 2004 13:24:52 +0000 Subject: [PATCH] JMA GCC 3.4 Compatibility --- zsnes/src/jma/jma.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/jma/jma.cpp b/zsnes/src/jma/jma.cpp index c7479cb9..2437218a 100644 --- a/zsnes/src/jma/jma.cpp +++ b/zsnes/src/jma/jma.cpp @@ -70,7 +70,7 @@ namespace JMA } //Seek to before file block so we can read the file block - stream.seekg(-(file_block_size+UINT_SIZE),ios::end); + stream.seekg(-((int)file_block_size+UINT_SIZE),ios::end); jma_file_info file_info; char byte;