diff engine/core/model/structures/map.cpp @ 617:69ef061db940

Removed the remaining size_t references that affected the FIFE API and replaced them with more appropriate definitions. The remaining size_t definitions will remain as they wont cause any issues. fixes[t:152]
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Mon, 27 Sep 2010 21:18:24 +0000
parents d242e6ce6f9f
children
line wrap: on
line diff
--- a/engine/core/model/structures/map.cpp	Mon Sep 27 15:38:09 2010 +0000
+++ b/engine/core/model/structures/map.cpp	Mon Sep 27 21:18:24 2010 +0000
@@ -78,7 +78,7 @@
 		throw NotFound(id);
 	}
 
-	size_t Map::getNumLayers() const {
+	uint32_t Map::getNumLayers() const {
 		return m_layers.size();
 	}