summaryrefslogtreecommitdiff
path: root/games-emulation/gngb/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-05-13 16:38:56 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-05-13 16:38:56 +0100
commitea31ad0ed5501d0bf92267c35beaf06ac016bad2 (patch)
tree2fdc433d571e3ead010876d43ce2646b7d783680 /games-emulation/gngb/files
parent88ebe56470c37b02a044e1091cad6b2df0f3be8f (diff)
gentoo resync : 13.05.2018
Diffstat (limited to 'games-emulation/gngb/files')
-rw-r--r--games-emulation/gngb/files/gngb-20060309-ovflfix.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/games-emulation/gngb/files/gngb-20060309-ovflfix.patch b/games-emulation/gngb/files/gngb-20060309-ovflfix.patch
deleted file mode 100644
index 0b638a1da9ab..000000000000
--- a/games-emulation/gngb/files/gngb-20060309-ovflfix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/src/serial.c.old 2010-10-28 14:40:23.000000000 +0200
-+++ b/src/serial.c 2010-10-28 14:41:07.000000000 +0200
-@@ -302,11 +302,11 @@
- /* Gbserial_read: Read a byte on the serial
- This is a block function */
- Uint8 gbserial_read(void) {
-- Uint8 b;
-+ Uint8 b[2];
-
- gbserial.ready2read=0;
-- if ((read(dest_socket,&b,2))<=0) return 0xFF;
-- return b;
-+ if ((read(dest_socket,b,2))<=0) return 0xFF;
-+ return b[0];
- }
-
- /* Gbserial_write: Write a byte on the serial