aboutsummaryrefslogtreecommitdiff
path: root/games/megamario/files/patch-src-main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'games/megamario/files/patch-src-main.cpp')
-rw-r--r--games/megamario/files/patch-src-main.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/games/megamario/files/patch-src-main.cpp b/games/megamario/files/patch-src-main.cpp
index 6ebb8d5988c2..8e0cf6511557 100644
--- a/games/megamario/files/patch-src-main.cpp
+++ b/games/megamario/files/patch-src-main.cpp
@@ -1,5 +1,5 @@
---- src/main.cpp.orig 2012-05-06 00:56:40.000000000 +0200
-+++ src/main.cpp 2012-05-06 01:03:55.000000000 +0200
+--- src/main.cpp.orig 2013-09-20 13:22:00.000000000 +0200
++++ src/main.cpp 2013-09-20 13:23:53.000000000 +0200
@@ -61,7 +61,7 @@
#endif /* defined __unix__ */
@@ -9,6 +9,15 @@
dictionary * d = iniparser_new(szIniFile);
pixelation = iniparser_getboolean (d, "Mario:Pixelation", 1);
+@@ -238,7 +238,7 @@
+
+ if(event.key.keysym.sym == SDLK_F12)
+ {
+- char gammel[100];
++ char *gammel = new char[100];
+ sprintf(gammel,"screenshots/%d.bmp",rand()%10000);
+ SDL_SaveBMP(screen,gammel);
+ delete[] gammel;
@@ -413,7 +413,7 @@