diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-09-23 22:58:38 -0500 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-09-23 22:58:38 -0500 |
commit | b4a734bdd7b3f01a72ad76c1d21fac3f141c3f6c (patch) | |
tree | 354fd8ea0ac235d6bd3b7df710d4ec7e65c06d83 /src/koopatlas/hud.cpp | |
parent | ead267bc2bdfd2a90b8d66d010048a3bc4d0a9d8 (diff) | |
parent | 4f567256d015cf7a835ac03b9e5abb8a2a7eb12a (diff) | |
download | kamek-b4a734bdd7b3f01a72ad76c1d21fac3f141c3f6c.tar.gz kamek-b4a734bdd7b3f01a72ad76c1d21fac3f141c3f6c.zip |
Merge branch 'level-select' of ssh://treeki.rustedlogic.net:30000/Kamek into level-select
Diffstat (limited to '')
-rw-r--r-- | src/koopatlas/hud.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/koopatlas/hud.cpp b/src/koopatlas/hud.cpp index 3989a1c..44b0fce 100644 --- a/src/koopatlas/hud.cpp +++ b/src/koopatlas/hud.cpp @@ -200,7 +200,7 @@ void dWMHud_c::setLevelText(const wchar_t *str, int length) { tw.tagProcessorMaybe = box->tagProc; float width = tw.CalcStringWidth(str, length); - SpammyReport("Text width: %f\n", width); + //SpammyReport("Text width: %f\n", width); layout.findWindowByName("W_levelname")->size.x = width + 22; layout.findPictureByName("P_topleftboxbg")->size.x = width; @@ -370,7 +370,7 @@ void dWMHud_c::setWorldText(const wchar_t *str, int length) { tw.tagProcessorMaybe = box->tagProc; float width = tw.CalcStringWidth(str, length); - SpammyReport("Text width: %f\n", width); + //SpammyReport("Text width: %f\n", width); box->SetString(str); } |