diff options
Diffstat (limited to 'games-strategy/scorched3d/files/35-gcc3.patch')
-rw-r--r-- | games-strategy/scorched3d/files/35-gcc3.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/games-strategy/scorched3d/files/35-gcc3.patch b/games-strategy/scorched3d/files/35-gcc3.patch deleted file mode 100644 index 81ff4bea5027..000000000000 --- a/games-strategy/scorched3d/files/35-gcc3.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -ur -x '*.o' scorched-orig/src/common/SoundStore.h scorched/src/common/SoundStore.h ---- scorched-orig/src/common/SoundStore.h 2003-07-30 17:41:28.000000000 -0400 -+++ scorched/src/common/SoundStore.h 2003-08-06 20:41:23.056115008 -0400 -@@ -29,7 +29,7 @@ - #include <string> - - #define CACHE_SOUND(var, filename) \ -- static SoundBuffer* ##var = SoundStore::instance()->fetchOrCreateBuffer(##filename); -+ static SoundBuffer* var = SoundStore::instance()->fetchOrCreateBuffer(filename); - - class SoundStore - { -diff -ur -x '*.o' scorched-orig/src/engine/ActionMeta.h scorched/src/engine/ActionMeta.h ---- scorched-orig/src/engine/ActionMeta.h 2003-07-30 17:41:29.000000000 -0400 -+++ scorched/src/engine/ActionMeta.h 2003-08-06 20:36:57.001561448 -0400 -@@ -29,7 +29,7 @@ - - #define REGISTER_ACTION_HEADER(x) \ - virtual const char *getActionName() { return #x ; } \ -- ##x *getActionCopy() { return new x ; } \ -+ x *getActionCopy() { return new x ; } \ - virtual bool getReferenced() { return true; } - #define REGISTER_ACTION_SOURCE(x) \ - struct META_##x { META_##x() { ActionMetaRegistration::addMap(#x , new x ); } }; \ |