diff options
author | Max Horn | 2002-08-31 15:00:44 +0000 |
---|---|---|
committer | Max Horn | 2002-08-31 15:00:44 +0000 |
commit | 8d3a3fc1d618f2c890eb672bf8dfc47f3bbe4fc6 (patch) | |
tree | a47998fc7faf1c371369bf562ec3d29a34f21d46 | |
parent | 828d0849a10029d633bfdd447a3c31ab27520fc8 (diff) | |
download | scummvm-rg350-8d3a3fc1d618f2c890eb672bf8dfc47f3bbe4fc6.tar.gz scummvm-rg350-8d3a3fc1d618f2c890eb672bf8dfc47f3bbe4fc6.tar.bz2 scummvm-rg350-8d3a3fc1d618f2c890eb672bf8dfc47f3bbe4fc6.zip |
changed spacing - this is not based on the original game, but rather on visual observations (with this changed, the spacing in the about dialog looks much better)
svn-id: r4884
-rw-r--r-- | scumm/string.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index 6177114c6b..dad9406227 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -1026,8 +1026,8 @@ int CharsetRenderer::getSpacing(char chr) if (_curId == 1) { switch (chr) { case '.': - space = 1; - break; + case ':': + case ';': case 'i': case '\'': case 'I': @@ -1040,6 +1040,10 @@ int CharsetRenderer::getSpacing(char chr) case ' ': space = 4; break; + case '(': + case ')': + space = 5; + break; case 'W': case 'w': case 'N': |