projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a5c52f
)
try to fix 64 bit problems
author
Matthias Braun
<matze@braunis.de>
Thu, 9 Feb 2006 01:05:30 +0000
(
01:05
+0000)
committer
Matthias Braun
<matze@braunis.de>
Thu, 9 Feb 2006 01:05:30 +0000
(
01:05
+0000)
SVN-Revision: 3051
src/squirrel/squirrel/sqtable.h
patch
|
blob
|
history
diff --git
a/src/squirrel/squirrel/sqtable.h
b/src/squirrel/squirrel/sqtable.h
index
141261f
..
8d90f7b
100644
(file)
--- a/
src/squirrel/squirrel/sqtable.h
+++ b/
src/squirrel/squirrel/sqtable.h
@@
-9,7
+9,7
@@
\r
#include "sqstring.h"
\r
\r
-#define hashptr(p) (((SQHash)(
p
)) >> 3)
\r
+#define hashptr(p) (((SQHash)(
reinterpret_cast<long>(p)
)) >> 3)
\r
\r
struct SQTable : public SQDelegable
\r
{
\r