diff options
author | Daniel Plakhotich | 2016-12-10 13:12:41 +0200 |
---|---|---|
committer | Daniel Plakhotich | 2016-12-10 13:12:41 +0200 |
commit | fa56325aa2ae00dc81ca262c08f1fc5a2294a8d0 (patch) | |
tree | 6931a288131bf9c26906a4406e60188e0ddb0766 /engines/cruise | |
parent | b03b7902ebf265d18410266da3426fe42c67c065 (diff) | |
download | scummvm-rg350-fa56325aa2ae00dc81ca262c08f1fc5a2294a8d0.tar.gz scummvm-rg350-fa56325aa2ae00dc81ca262c08f1fc5a2294a8d0.tar.bz2 scummvm-rg350-fa56325aa2ae00dc81ca262c08f1fc5a2294a8d0.zip |
CRUISE: Fix font space width
Diffstat (limited to 'engines/cruise')
-rw-r--r-- | engines/cruise/font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cruise/font.cpp b/engines/cruise/font.cpp index 335e0664bf..3a4e0d6d78 100644 --- a/engines/cruise/font.cpp +++ b/engines/cruise/font.cpp @@ -30,7 +30,7 @@ namespace Cruise { -const int SPACE_WIDTH = 4; +const int SPACE_WIDTH = 5; /** * Determines the line size by finding the highest character in the given font set |