diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2007-07-31 14:11:02 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2007-07-31 14:11:02 +0000 |
commit | b73e1dc27688aab32f4927a192046bada1259952 (patch) | |
tree | 5f65d57d88b5505c572a454e8a9da2251263c42a /games/xevil/files/patch-cmn::game_style.cpp | |
parent | - Depend explicitly on USE_XORG= xmu (diff) |
Fix build on 64bit CPUs
Notes
Notes:
svn path=/head/; revision=196830
Diffstat (limited to 'games/xevil/files/patch-cmn::game_style.cpp')
-rw-r--r-- | games/xevil/files/patch-cmn::game_style.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/games/xevil/files/patch-cmn::game_style.cpp b/games/xevil/files/patch-cmn::game_style.cpp index 6d147c7eb7ea..4fc02cc99b8c 100644 --- a/games/xevil/files/patch-cmn::game_style.cpp +++ b/games/xevil/files/patch-cmn::game_style.cpp @@ -1,5 +1,5 @@ ---- cmn/game_style.cpp.orig Sat Mar 22 20:47:42 2003 -+++ cmn/game_style.cpp Sat Oct 25 21:41:21 2003 +--- cmn/game_style.cpp.orig 2003-03-22 20:47:42.000000000 +0100 ++++ cmn/game_style.cpp 2007-07-31 15:57:08.000000000 +0200 @@ -34,7 +34,8 @@ } @@ -10,3 +10,12 @@ #endif #if WIN32 +@@ -2680,7 +2681,7 @@ + HumanP human = locator->get_human(n); + if (human) { + // previous depth +- int depthOld = (int)human->get_data(); ++ intptr_t depthOld = (intptr_t)human->get_data(); + Id id = human->get_id(); + + // Get physical for intelligence |