summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-05-12 17:21:43 +0200
committerJames Le Cuirot <chewi@gentoo.org>2018-05-13 10:38:51 +0100
commitc04edb91ed010d399601e0129b12a32b8688da10 (patch)
tree9573ba478b6c998dbea4ce8e6ffa97c3417439d5 /games-emulation/gngb
parentdev-java/json-simple: remove unused patch(es) (diff)
downloadgentoo-c04edb91ed010d399601e0129b12a32b8688da10.tar.gz
gentoo-c04edb91ed010d399601e0129b12a32b8688da10.tar.bz2
gentoo-c04edb91ed010d399601e0129b12a32b8688da10.zip
games-emulation/gngb: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/8366
Diffstat (limited to 'games-emulation/gngb')
-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