diff options
author | Eugene Sandulenko | 2016-06-14 20:29:50 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-06-14 20:30:24 +0200 |
commit | 2bf0ebf31733988a940dc31fa0bd2367dcd91e68 (patch) | |
tree | 3fa63ea8eea2bac4aac3bbadb7b82aa333fd6948 /graphics/surface.h | |
parent | 3028d9202d4751c5b49ca6ec8a2f63b24fad3df4 (diff) | |
download | scummvm-rg350-2bf0ebf31733988a940dc31fa0bd2367dcd91e68.tar.gz scummvm-rg350-2bf0ebf31733988a940dc31fa0bd2367dcd91e68.tar.bz2 scummvm-rg350-2bf0ebf31733988a940dc31fa0bd2367dcd91e68.zip |
GRAPHICS: Add possibility to specify Fill maskmode in the constructor
Diffstat (limited to 'graphics/surface.h')
-rw-r--r-- | graphics/surface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/surface.h b/graphics/surface.h index 414a734683..87c5f52503 100644 --- a/graphics/surface.h +++ b/graphics/surface.h @@ -362,7 +362,7 @@ public: * @param oldColor Color on the surface to change * @param fillColor Color to fill with */ - FloodFill(Surface *surface, uint32 oldColor, uint32 fillColor); + FloodFill(Surface *surface, uint32 oldColor, uint32 fillColor, bool maskMode = false); ~FloodFill(); /** |