diff options
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/made/screen.h b/engines/made/screen.h index 55dd92cabd..d95e9440ae 100644 --- a/engines/made/screen.h +++ b/engines/made/screen.h @@ -75,12 +75,12 @@ public: void setOutlineColor(int16 color) { _outlineColor = color; - _dropshadowColor = -1; + _dropShadowColor = -1; } void setDropShadowColor(int16 color) { _outlineColor = -1; - _dropshadowColor = color; + _dropShadowColor = color; } uint16 updateChannel(uint16 channelIndex); |