diff options
author | athrxx | 2019-11-26 23:08:35 +0100 |
---|---|---|
committer | athrxx | 2019-12-18 20:50:44 +0100 |
commit | 1f42999a7cd3b35df4f5611cf27c7d98974e8673 (patch) | |
tree | 3834cbf1882dc42776e8f1317b0e065ae2f00d5f /graphics/sjis.h | |
parent | 33cce35baaad3043f98e3252ed04bdf2ebcb2786 (diff) | |
download | scummvm-rg350-1f42999a7cd3b35df4f5611cf27c7d98974e8673.tar.gz scummvm-rg350-1f42999a7cd3b35df4f5611cf27c7d98974e8673.tar.bz2 scummvm-rg350-1f42999a7cd3b35df4f5611cf27c7d98974e8673.zip |
GRAPHICS: implement left sided shadowing for SJIS font
The current shadow mode draws a shadow on the right side of the character. This allows drawing one on the left.
Adapt LOOM/PCE accordingly.
Diffstat (limited to 'graphics/sjis.h')
-rw-r--r-- | graphics/sjis.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/sjis.h b/graphics/sjis.h index 2872471d24..d06d20e44d 100644 --- a/graphics/sjis.h +++ b/graphics/sjis.h @@ -84,7 +84,8 @@ public: enum DrawingMode { kDefaultMode, kOutlineMode, - kShadowMode, + kShadowRightMode, + kShadowLeftMode, kFMTownsShadowMode }; |