summaryrefslogtreecommitdiff
path: root/~emulatorman
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-04-04 17:32:35 -0300
committerAndré Fabian Silva Delgado <andre@pc-01.localdomain>2012-04-04 17:32:35 -0300
commit121d5e250af8313b6560f1c2b85a0a03b9c90694 (patch)
treeceb72ab9f438aca9833439e08b27fc3e5811647e /~emulatorman
parent19cef229db7382ff73f5c38aff013e7998019149 (diff)
~emulatorman/mednafen-wip/build.patch
Diffstat (limited to '~emulatorman')
-rw-r--r--~emulatorman/mednafen-wip/build.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/~emulatorman/mednafen-wip/build.patch b/~emulatorman/mednafen-wip/build.patch
deleted file mode 100644
index 7985a19ed..000000000
--- a/~emulatorman/mednafen-wip/build.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff --git a/src/file.cpp b/src/file.cpp
-index 57f4e13..ec1181c 100644
---- a/src/file.cpp
-+++ b/src/file.cpp
-@@ -293,7 +293,7 @@ bool MDFNFILE::MakeMemWrapAndClose(void *tz, int type)
- goto doret;
- }
-
-- while((howmany = gzread(tz, f_data + cur_size, cur_alloced - cur_size)) > 0)
-+ while((howmany = gzread((gzFile)tz, f_data + cur_size, cur_alloced - cur_size)) > 0)
- {
- cur_size += howmany;
- cur_alloced <<= 1;
-@@ -320,7 +320,7 @@ bool MDFNFILE::MakeMemWrapAndClose(void *tz, int type)
- {
- int gzerrnum = 0;
- const char *gzerrstring;
-- if((gzerrstring = gzerror(tz, &gzerrnum)) && gzerrnum != Z_OK && gzerrnum != Z_STREAM_END)
-+ if((gzerrstring = gzerror((gzFile)tz, &gzerrnum)) && gzerrnum != Z_OK && gzerrnum != Z_STREAM_END)
- {
- if(gzerrnum != Z_ERRNO)
- {
-@@ -365,7 +365,7 @@ bool MDFNFILE::MakeMemWrapAndClose(void *tz, int type)
- }
- else if(type == MDFN_FILETYPE_GZIP)
- {
-- gzclose(tz);
-+ gzclose((gzFile)tz);
- }
- else if(type == MDFN_FILETYPE_ZIP)
- {