diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-20 09:22:35 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-20 09:22:35 +0000 |
commit | cf1dda690f59f6f53a538631549b90e0ffe61601 (patch) | |
tree | a1e18704899557a1a414c051bff75d928c918aac /games-action/clanbomber | |
parent | clean older version (Manifest recommit) (diff) | |
download | gentoo-2-cf1dda690f59f6f53a538631549b90e0ffe61601.tar.gz gentoo-2-cf1dda690f59f6f53a538631549b90e0ffe61601.tar.bz2 gentoo-2-cf1dda690f59f6f53a538631549b90e0ffe61601.zip |
unused patch
Diffstat (limited to 'games-action/clanbomber')
-rw-r--r-- | games-action/clanbomber/files/1.04-no-display.patch | 38 |
1 files changed, 0 insertions, 38 deletions
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) ); - |