diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-02-13 06:05:41 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-02-13 06:32:48 -0500 |
commit | 8f5bee370d638eaa4e95ab39f1a07de6f4dc19ec (patch) | |
tree | 8da8ee28c0688416d3dee30b7e890796987d159e /games-emulation/fceux/files | |
parent | dev-util/maturin: drop 0.14.10 (diff) | |
download | gentoo-8f5bee370d638eaa4e95ab39f1a07de6f4dc19ec.tar.gz gentoo-8f5bee370d638eaa4e95ab39f1a07de6f4dc19ec.tar.bz2 gentoo-8f5bee370d638eaa4e95ab39f1a07de6f4dc19ec.zip |
games-emulation/fceux: drop 2.6.4
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-emulation/fceux/files')
-rw-r--r-- | games-emulation/fceux/files/fceux-2.2.2-warnings.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/games-emulation/fceux/files/fceux-2.2.2-warnings.patch b/games-emulation/fceux/files/fceux-2.2.2-warnings.patch deleted file mode 100644 index 1d6c3ba46319..000000000000 --- a/games-emulation/fceux/files/fceux-2.2.2-warnings.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- fceux-2.2.2.orig/src/input.cpp 2013-06-15 15:44:11.000000000 -0400 -+++ fceux-2.2.2/src/input.cpp 2014-12-31 01:32:46.302001912 -0500 -@@ -1161,7 +1161,7 @@ - // FIXME this will always evaluate to true, should this be
- // if (*lastSavestateMade...) to check if it holds a string or just
- // a '\0'?
-- if (lastSavestateMade && (undoSS || redoSS))
-+ if (*lastSavestateMade && (undoSS || redoSS))
- SwapSaveState();
- }
-
---- fceux-2.2.2.orig/src/state.cpp 2013-09-18 19:03:59.000000000 -0400 -+++ fceux-2.2.2/src/state.cpp 2014-12-31 01:33:11.453155054 -0500 -@@ -1048,7 +1048,7 @@ - //Both files must exist
- //--------------------------------------------------------------------------------------------
-
-- if (!lastSavestateMade)
-+ if (!*lastSavestateMade)
- {
- FCEUI_DispMessage("Can't Undo",0);
- FCEUI_printf("Undo savestate was attempted but unsuccessful because there was not a recently used savestate.\n");
-@@ -1153,7 +1153,7 @@ - void RedoLoadState()
- {
- if (!redoLS) return;
-- if (lastLoadstateMade && redoLS)
-+ if (*lastLoadstateMade && redoLS)
- {
- FCEUSS_Load(lastLoadstateMade);
- FCEUI_printf("Redoing %s\n",lastLoadstateMade);
|