summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorJacobF <queatz@gmail.com>2011-09-04 17:01:28 -0400
committerJacobF <queatz@gmail.com>2011-09-04 17:01:28 -0400
commitd670c831c2183967a5b5e2cdd104fd07a40bb3f4 (patch)
treeb83f5a7beeea912f903b9716919bf81c7b8f6921 /src/map.h
parentd1a16f24cfb360a0a6e60fc76ea87d7c4cf24618 (diff)
downloadminetest-d670c831c2183967a5b5e2cdd104fd07a40bb3f4.tar.gz
minetest-d670c831c2183967a5b5e2cdd104fd07a40bb3f4.tar.bz2
minetest-d670c831c2183967a5b5e2cdd104fd07a40bb3f4.zip
These numbers were well exceeding 2^32...
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.h b/src/map.h
index 411a7ae51..e0b67eb6e 100644
--- a/src/map.h
+++ b/src/map.h
@@ -378,7 +378,7 @@ public:
// Verify we can read/write to the database
void verifyDatabase();
// Get an integer suitable for a block
- static int getBlockAsInteger(const v3s16 pos);
+ static sqlite3_int64 getBlockAsInteger(const v3s16 pos);
// Returns true if the database file does not exist
bool loadFromFolders();