diff options
Diffstat (limited to 'games/blobwars/files/patch-src__CReplayData.cpp')
-rw-r--r-- | games/blobwars/files/patch-src__CReplayData.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/games/blobwars/files/patch-src__CReplayData.cpp b/games/blobwars/files/patch-src__CReplayData.cpp deleted file mode 100644 index dfe24dcb1650..000000000000 --- a/games/blobwars/files/patch-src__CReplayData.cpp +++ /dev/null @@ -1,12 +0,0 @@ ---- ./src/CReplayData.cpp.orig 2011-04-17 16:56:56.000000000 +0200 -+++ ./src/CReplayData.cpp 2013-12-08 23:21:23.000000000 +0100 -@@ -38,7 +38,8 @@ - - void ReplayData::printReplayInformation() - { -- tm *timeinfo = localtime(&header.randomSeed); -+ time_t t = header.randomSeed; -+ tm *timeinfo = localtime(&t); - printf("Recorded on : %s", asctime(timeinfo)); - printf("Map : %s\n", header.map); - printf("Score : %d\n", header.score); |