summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-action/bombermaze/files/bombermaze-0.6.6-gcc.patch')
-rw-r--r--games-action/bombermaze/files/bombermaze-0.6.6-gcc.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/games-action/bombermaze/files/bombermaze-0.6.6-gcc.patch b/games-action/bombermaze/files/bombermaze-0.6.6-gcc.patch
deleted file mode 100644
index 6f92e5f267e4..000000000000
--- a/games-action/bombermaze/files/bombermaze-0.6.6-gcc.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/map.cc
-+++ src/map.cc
-@@ -1587,7 +1587,7 @@
- width = w;
- height = h;
-
-- map = new (char *)[width];
-+ map = new char *[width];
-
- unsigned i;
- for (i = 0; i < width; i++)
-@@ -1728,7 +1728,7 @@
-
- void GameMap::allocate_map(MapSquare ***m)
- {
-- *m = new (MapSquare *)[width];
-+ *m = new MapSquare *[width];
- int i;
- for (i = 0; i < width; i++)
- {