diff options
| author | Eugene Sandulenko | 2016-12-10 13:22:25 +0100 |
|---|---|---|
| committer | GitHub | 2016-12-10 13:22:25 +0100 |
| commit | b49abf28ad6518d6c2d0e75d4c0d9c873cbaa589 (patch) | |
| tree | 6931a288131bf9c26906a4406e60188e0ddb0766 | |
| parent | b03b7902ebf265d18410266da3426fe42c67c065 (diff) | |
| parent | fa56325aa2ae00dc81ca262c08f1fc5a2294a8d0 (diff) | |
| download | scummvm-rg350-b49abf28ad6518d6c2d0e75d4c0d9c873cbaa589.tar.gz scummvm-rg350-b49abf28ad6518d6c2d0e75d4c0d9c873cbaa589.tar.bz2 scummvm-rg350-b49abf28ad6518d6c2d0e75d4c0d9c873cbaa589.zip | |
Merge pull request #869 from danpla/cruise-fix-font-space
CRUISE: Fix font space width
| -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 |
