diff options
Diffstat (limited to 'emulators/yape/files')
-rw-r--r-- | emulators/yape/files/patch-Makefile | 23 | ||||
-rw-r--r-- | emulators/yape/files/patch-README.SDL | 11 | ||||
-rw-r--r-- | emulators/yape/files/patch-archdep.cpp | 29 | ||||
-rw-r--r-- | emulators/yape/files/patch-interface.cpp | 11 | ||||
-rw-r--r-- | emulators/yape/files/patch-serial.h | 11 | ||||
-rw-r--r-- | emulators/yape/files/patch-sound.h | 11 |
6 files changed, 0 insertions, 96 deletions
diff --git a/emulators/yape/files/patch-Makefile b/emulators/yape/files/patch-Makefile deleted file mode 100644 index 097dffc953dc..000000000000 --- a/emulators/yape/files/patch-Makefile +++ /dev/null @@ -1,23 +0,0 @@ ---- Makefile.orig -+++ Makefile -@@ -23,8 +23,8 @@ - hasnoheader = main.h dos.h - sourcefiles = $(filter-out $(hasnoheader),$(allfiles)) device.h mem.h roms.h types.h - --CC = g++ --cflags = -O3 -finline -frerun-loop-opt -Winline -fomit-frame-pointer `sdl-config --cflags` -+CC = $(CXX) -+cflags = $(CFLAGS) -finline -frerun-loop-opt -Winline -fomit-frame-pointer `sdl-config --cflags` - libs = `sdl-config --libs` - - #SDL_CFLAGS := $(shell sdl-config --cflags) -@@ -72,6 +72,9 @@ - prg.o : prg.cpp prg.h - $(CC) $(cflags) -c $< - -+serial.o : serial.cpp serial.h -+ $(CC) $(cflags) -c $< -+ - sound.o : sound.cpp sound.h - $(CC) $(cflags) -c $< - diff --git a/emulators/yape/files/patch-README.SDL b/emulators/yape/files/patch-README.SDL deleted file mode 100644 index 812c1885193a..000000000000 --- a/emulators/yape/files/patch-README.SDL +++ /dev/null @@ -1,11 +0,0 @@ ---- README.SDL.orig -+++ README.SDL -@@ -80,7 +80,7 @@ - LALT + W : toggle between unlimited speed and 50 Hz frame rate (original speed) - - Internal disk LOAD/SAVE operations are supported to the current -- file system directory, which is usually '/home/<username>/yape'. -+ file system directory, which is usually '/home/<username>/.yape'. - Any PRG files you may wish to load, should go there, although you can browse the directory tree - from the user interface, too. - diff --git a/emulators/yape/files/patch-archdep.cpp b/emulators/yape/files/patch-archdep.cpp deleted file mode 100644 index be12ad264c2f..000000000000 --- a/emulators/yape/files/patch-archdep.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- archdep.cpp.orig -+++ archdep.cpp -@@ -75,7 +75,7 @@ - int ad_makedirs(char *path) - { - strcpy(temp,path); -- strcat(temp, "/yape"); -+ strcat(temp, "/.yape"); - CreateDirectory(temp, NULL); - - return 1; -@@ -296,7 +296,7 @@ - // Possible buffer overflow fixed. - strncpy(temp, path, 512); - if (strlen(temp) > 506) return 0; -- strcat(temp, "/yape"); -+ strcat(temp, "/.yape"); - mkdir(temp, 0777); - - return 1; -@@ -307,7 +307,7 @@ - // Possible buffer overflow fixed. - strncpy(temp, tmpchr, 512); - if (strlen(temp) > 496) return NULL; -- strcat( temp, "/yape/yape.conf"); -+ strcat( temp, "/.yape/yape.conf"); - return temp; - } - diff --git a/emulators/yape/files/patch-interface.cpp b/emulators/yape/files/patch-interface.cpp deleted file mode 100644 index a8c26767a683..000000000000 --- a/emulators/yape/files/patch-interface.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- interface.cpp.orig -+++ interface.cpp -@@ -10,7 +10,7 @@ - (c) 2000, 2001 Attila Grósz - */ - --#include "SDL/SDL.h" -+#include "SDL.h" - #include "tedmem.h" - #include "interface.h" - #include "archdep.h" diff --git a/emulators/yape/files/patch-serial.h b/emulators/yape/files/patch-serial.h deleted file mode 100644 index e8735bf0c0cc..000000000000 --- a/emulators/yape/files/patch-serial.h +++ /dev/null @@ -1,11 +0,0 @@ ---- serial.h.orig -+++ serial.h -@@ -1,7 +1,7 @@ - #ifndef _SERIAL_H - #define _SERIAL_H - --#include "SDL/SDL.h" -+#include "SDL.h" - - class CSerial { - diff --git a/emulators/yape/files/patch-sound.h b/emulators/yape/files/patch-sound.h deleted file mode 100644 index b8548464d75b..000000000000 --- a/emulators/yape/files/patch-sound.h +++ /dev/null @@ -1,11 +0,0 @@ ---- sound.h.orig -+++ sound.h -@@ -1,7 +1,7 @@ - #ifndef _SOUND_H - #define _SOUND_H - --#include <SDL/SDL.h> -+#include <SDL.h> - #include "types.h" - - extern void init_audio(unsigned int sampleFrq = 48000); |