diff options
-rw-r--r-- | games-action/clanbomber/Manifest | 1 | ||||
-rw-r--r-- | games-action/clanbomber/files/1.04-no-display.patch | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/games-action/clanbomber/Manifest b/games-action/clanbomber/Manifest index ab657df8a89d..8989a587ad61 100644 --- a/games-action/clanbomber/Manifest +++ b/games-action/clanbomber/Manifest @@ -1,6 +1,5 @@ MD5 9802c0debb23dfefb27aa3bdac592d53 ChangeLog 641 MD5 042c680a45dc47c6b52b7f6643ef0ae2 metadata.xml 664 MD5 f5d44857e66661fc49082136bdc762e5 clanbomber-1.05.ebuild 1083 -MD5 ee76e48cb66f47c894a990e83dea2802 files/1.04-no-display.patch 1122 MD5 fe0f8b2ccaef47cc0612a83d6cb0cea8 files/digest-clanbomber-1.05 68 MD5 18333125f34d58cb129c22c86ad7ef50 files/1.05-no-display.patch 1217 diff --git a/games-action/clanbomber/files/1.04-no-display.patch b/games-action/clanbomber/files/1.04-no-display.patch deleted file mode 100644 index 4ec3e6f4284d..000000000000 --- a/games-action/clanbomber/files/1.04-no-display.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- clanbomber/ClanBomber.h.orig 2004-01-29 04:31:28.968498024 -0500 -+++ clanbomber/ClanBomber.h 2004-01-29 04:32:38.798882192 -0500 -@@ -154,13 +154,13 @@ - static CL_String get_local_map_path(); - - -- virtual void init_modules() -+ virtual void init_modules(bool register_resources_only = false) - { -- CL_SetupCore::init(); -- CL_SetupDisplay::init(); -- CL_SetupSound::init(); -+ CL_SetupCore::init(register_resources_only); -+ CL_SetupDisplay::init(register_resources_only); -+ CL_SetupSound::init(register_resources_only); - #ifdef MUSIC -- CL_SetupMikMod::init(); -+ CL_SetupMikMod::init(register_resources_only); - #endif - } - ---- clanbomber/ClanBomber.cpp.orig 2004-01-29 04:31:32.321988216 -0500 -+++ clanbomber/ClanBomber.cpp 2004-01-29 04:33:03.503126576 -0500 -@@ -82,12 +82,13 @@ - - try - { -- init_modules(); - - if (argc > 1 && strcmp (argv[1], "-datafile") == 0) { -+ init_modules(true); - CL_DatafileCompiler::write("clanbomber.scr", "clanbomber.dat"); - quit_app(0); - } -+ init_modules(); - - srand( (long)time(NULL) ); - |