Link Here
|
|
|
1 |
Fixes the build on 32-bit architectures: |
2 |
|
3 |
src/CReplayData.cpp: In member function 'void ReplayData::printReplayInformation()': |
4 |
src/CReplayData.cpp:41: error: invalid conversion from 'long int*' to 'const time_t*' |
5 |
src/CReplayData.cpp:41: error: initializing argument 1 of 'tm* localtime(const time_t*)' |
6 |
|
7 |
Submitted via email to guus@debian.org (upstream committer). |
8 |
--- src/CReplayDataHeader.h |
9 |
+++ src/CReplayDataHeader.h |
10 |
@@ -1,7 +1,7 @@ |
11 |
struct ReplayDataHeader |
12 |
{ |
13 |
char map[PATH_MAX]; |
14 |
- long randomSeed; |
15 |
+ time_t randomSeed; |
16 |
float version; |
17 |
int release; |
18 |
int skill; |