From b7dda5b4c0b9ca7c2da1181e418308fc05462b25 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Mon, 10 Apr 2017 13:17:17 +0000 Subject: - Update to 102 PR: 211855 Submitted by: cyberbotx@cyberbotx.com (maintainer) --- .../files/patch-higan_target-tomoko_GNUmakefile | 15 ++++++++++ ...gan_target-tomoko_presentation_presentation.cpp | 11 ++++++++ .../patch-higan_target-tomoko_program_medium.cpp | 11 ++++++++ .../files/patch-higan_target-tomoko_tomoko.cpp | 23 +++++++++++++++ .../files/patch-higan_target-tomoko_tomoko.hpp | 8 ++++++ ...ch-higan_target-tomoko_tools_cheat-database.cpp | 11 ++++++++ emulators/higan/files/patch-icarus_core_core.cpp | 33 ++++++++++++++++++++++ emulators/higan/files/patch-icarus_icarus.cpp | 23 +++++++++++++++ emulators/higan/files/patch-nall-platform.hpp | 11 -------- emulators/higan/files/patch-ruby__video__glx.cpp | 31 -------------------- emulators/higan/files/patch-target-ethos-Makefile | 15 ---------- .../patch-target-ethos_general_presentation.cpp | 11 -------- .../files/patch-target-ethos_utility_utility.cpp | 11 -------- 13 files changed, 135 insertions(+), 79 deletions(-) create mode 100644 emulators/higan/files/patch-higan_target-tomoko_GNUmakefile create mode 100644 emulators/higan/files/patch-higan_target-tomoko_presentation_presentation.cpp create mode 100644 emulators/higan/files/patch-higan_target-tomoko_program_medium.cpp create mode 100644 emulators/higan/files/patch-higan_target-tomoko_tomoko.cpp create mode 100644 emulators/higan/files/patch-higan_target-tomoko_tomoko.hpp create mode 100644 emulators/higan/files/patch-higan_target-tomoko_tools_cheat-database.cpp create mode 100644 emulators/higan/files/patch-icarus_core_core.cpp create mode 100644 emulators/higan/files/patch-icarus_icarus.cpp delete mode 100644 emulators/higan/files/patch-nall-platform.hpp delete mode 100644 emulators/higan/files/patch-ruby__video__glx.cpp delete mode 100644 emulators/higan/files/patch-target-ethos-Makefile delete mode 100644 emulators/higan/files/patch-target-ethos_general_presentation.cpp delete mode 100644 emulators/higan/files/patch-target-ethos_utility_utility.cpp (limited to 'emulators/higan/files') diff --git a/emulators/higan/files/patch-higan_target-tomoko_GNUmakefile b/emulators/higan/files/patch-higan_target-tomoko_GNUmakefile new file mode 100644 index 000000000000..f5e4491554d4 --- /dev/null +++ b/emulators/higan/files/patch-higan_target-tomoko_GNUmakefile @@ -0,0 +1,15 @@ +--- higan/target-tomoko/GNUmakefile.orig 2016-01-14 03:20:56 UTC ++++ higan/target-tomoko/GNUmakefile +@@ -27,9 +27,9 @@ else ifeq ($(platform),linux) + ruby += audio.alsa audio.openal audio.oss audio.pulseaudio audio.pulseaudiosimple audio.ao + ruby += input.udev input.sdl input.xlib + else ifeq ($(platform),bsd) +- ruby += video.glx video.xv video.xshm video.sdl +- ruby += audio.openal audio.oss +- ruby += input.sdl input.xlib ++ ruby += %%VIDEO%% ++ ruby += %%AUDIO%% ++ ruby += %%INPUT%% + endif + + # ruby diff --git a/emulators/higan/files/patch-higan_target-tomoko_presentation_presentation.cpp b/emulators/higan/files/patch-higan_target-tomoko_presentation_presentation.cpp new file mode 100644 index 000000000000..bc30b6dc349c --- /dev/null +++ b/emulators/higan/files/patch-higan_target-tomoko_presentation_presentation.cpp @@ -0,0 +1,11 @@ +--- higan/target-tomoko/presentation/presentation.cpp.orig 2017-01-13 17:52:31 UTC ++++ higan/target-tomoko/presentation/presentation.cpp +@@ -278,7 +278,7 @@ auto Presentation::toggleFullScreen() -> + } + + auto Presentation::loadShaders() -> void { +- auto pathname = locate("Video Shaders/"); ++ auto pathname = locateShared("Video Shaders/"); + + if(settings["Video/Driver"].text() == "OpenGL") { + for(auto shader : directory::folders(pathname, "*.shader")) { diff --git a/emulators/higan/files/patch-higan_target-tomoko_program_medium.cpp b/emulators/higan/files/patch-higan_target-tomoko_program_medium.cpp new file mode 100644 index 000000000000..6c898cd0f699 --- /dev/null +++ b/emulators/higan/files/patch-higan_target-tomoko_program_medium.cpp @@ -0,0 +1,11 @@ +--- higan/target-tomoko/program/medium.cpp.orig 2017-01-13 10:43:46 UTC ++++ higan/target-tomoko/program/medium.cpp +@@ -17,7 +17,7 @@ auto Program::loadMedium() -> void { + auto Program::loadMedium(Emulator::Interface& interface, const Emulator::Interface::Medium& medium) -> void { + unloadMedium(); + +- mediumPaths.append(locate({medium.name, ".sys/"})); ++ mediumPaths.append(locateShared({medium.name, ".sys/"})); + + Emulator::audio.reset(2, audio->get(Audio::Frequency).get(44100)); + inputManager->bind(emulator = &interface); diff --git a/emulators/higan/files/patch-higan_target-tomoko_tomoko.cpp b/emulators/higan/files/patch-higan_target-tomoko_tomoko.cpp new file mode 100644 index 000000000000..e3790ab98982 --- /dev/null +++ b/emulators/higan/files/patch-higan_target-tomoko_tomoko.cpp @@ -0,0 +1,23 @@ +--- higan/target-tomoko/tomoko.cpp.orig 2016-07-01 08:21:27 UTC ++++ higan/target-tomoko/tomoko.cpp +@@ -4,6 +4,20 @@ unique_pointer