summaryrefslogtreecommitdiffstats
path: root/src/World.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-30 20:02:30 +0200
committermadmaxoft <github@xoft.cz>2014-03-30 20:02:30 +0200
commita5c0600e6c69c329fcafc2f9138b9439cf5f65ce (patch)
treea9fc9b6e6e52e6c2bf3fd617cf7450cf3cc12770 /src/World.h
parentMerge branch 'NetherFortGen'. (diff)
downloadcuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar
cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.gz
cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.bz2
cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.lz
cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.xz
cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.tar.zst
cuberite-a5c0600e6c69c329fcafc2f9138b9439cf5f65ce.zip
Diffstat (limited to 'src/World.h')
-rw-r--r--src/World.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/World.h b/src/World.h
index bb2eb0b21..b3ee94a27 100644
--- a/src/World.h
+++ b/src/World.h
@@ -646,9 +646,9 @@ public:
// Various queues length queries (cannot be const, they lock their CS):
inline int GetGeneratorQueueLength (void) { return m_Generator.GetQueueLength(); } // tolua_export
- inline int GetLightingQueueLength (void) { return m_Lighting.GetQueueLength(); } // tolua_export
- inline int GetStorageLoadQueueLength(void) { return m_Storage.GetLoadQueueLength(); } // tolua_export
- inline int GetStorageSaveQueueLength(void) { return m_Storage.GetSaveQueueLength(); } // tolua_export
+ inline size_t GetLightingQueueLength (void) { return m_Lighting.GetQueueLength(); } // tolua_export
+ inline size_t GetStorageLoadQueueLength(void) { return m_Storage.GetLoadQueueLength(); } // tolua_export
+ inline size_t GetStorageSaveQueueLength(void) { return m_Storage.GetSaveQueueLength(); } // tolua_export
void InitializeSpawn(void);