diff options
author | Adrian Frühwirth | 2018-04-22 00:49:39 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-04-22 00:56:21 +0200 |
commit | a20f90cbb7bfd61ee32ccd32603766de02c03ac8 (patch) | |
tree | 584197b20b101d746b64a20e3f1073b4b8808bb7 /engines/touche | |
parent | dd425413b5c69861fffe0071e6ca74b33a78c341 (diff) | |
download | scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.gz scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.bz2 scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.zip |
JANITORIAL: Fix formatting
Diffstat (limited to 'engines/touche')
-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); |