diff options
Diffstat (limited to 'engines/touche/touche.cpp')
-rw-r--r-- | engines/touche/touche.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/touche/touche.cpp b/engines/touche/touche.cpp index 15bcbbc0fc..4414ed1918 100644 --- a/engines/touche/touche.cpp +++ b/engines/touche/touche.cpp @@ -1370,7 +1370,8 @@ int ToucheEngine::getStringWidth(int num) const { debug("stringwidth: %s", str); debugN("raw:"); const char *p = str; - while (*p) debugN(" %02X", (unsigned char)*p++); + while (*p) + debugN(" %02X", (unsigned char)*p++); debugN("\n"); } return Graphics::getStringWidth16(str); |