summaryrefslogtreecommitdiff
path: root/GUI.cpp
diff options
context:
space:
mode:
authorJapa Illo2012-02-19 22:19:35 +0530
committerJapa Illo2012-02-19 22:19:35 +0530
commitfda4fafa501e5e4798d2b1eddd04e08d12136644 (patch)
tree7d66bbaa8134ea60f0d32edfeb9faeece42e9185 /GUI.cpp
parent3d016a2a6a55ca7cdd03e00242fc749fb481174b (diff)
downloadstonesense-fda4fafa501e5e4798d2b1eddd04e08d12136644.tar.gz
stonesense-fda4fafa501e5e4798d2b1eddd04e08d12136644.tar.bz2
stonesense-fda4fafa501e5e4798d2b1eddd04e08d12136644.tar.xz
Fixed the debug info gui.
Signed-off-by: Japa Illo <japa.mala.illo@gmail.com>
Diffstat (limited to 'GUI.cpp')
-rw-r--r--GUI.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/GUI.cpp b/GUI.cpp
index 20b51c0..82c3036 100644
--- a/GUI.cpp
+++ b/GUI.cpp
@@ -458,10 +458,13 @@ void drawDebugCursorAndInfo(){
if(b->building.info.type != BUILDINGTYPE_NA && b->building.info.type != BUILDINGTYPE_BLACKBOX && b->building.info.type != BUILDINGTYPE_TREE){
const char* matName = lookupMaterialTypeName(b->building.info.material.type);
const char* subMatName = lookupMaterialName(b->building.info.material.type,b->building.info.material.index);
+ const char* subTypeName = lookupBuildingSubtype(b->building.info.type, b->building.info.subtype);
draw_textf_border(font, al_map_rgb(255,255,255), 2, al_get_bitmap_height(al_get_target_bitmap())-20-(i--*al_get_font_line_height(font)), 0,
- "Building: gametype = %s(%i) Material: %s%s%s (%d,%d)",
+ "Building: game_type = %s(%i) game_subtype = %s(%i) Material: %s%s%s (%d,%d)",
ENUM_KEY_STR(building_type, (building_type::building_type)b->building.info.type),
b->building.info.type,
+ subTypeName,
+ b->building.info.subtype,
matName?matName:"Unknown",subMatName?"/":"",subMatName?subMatName:"",
b->building.info.material.type,b->building.info.material.index);