diff options
author | Torbjörn Andersson | 2006-05-20 11:24:45 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-05-20 11:24:45 +0000 |
commit | 3e973d2a910366834931bcf940cdf1f87ab6c96c (patch) | |
tree | 832febec289fb377d0db73a5deb9a7f0d3b45dc1 | |
parent | 6cdd98b6179954a6ccfc40a9db5bf106a3a9b9e1 (diff) | |
download | scummvm-rg350-3e973d2a910366834931bcf940cdf1f87ab6c96c.tar.gz scummvm-rg350-3e973d2a910366834931bcf940cdf1f87ab6c96c.tar.bz2 scummvm-rg350-3e973d2a910366834931bcf940cdf1f87ab6c96c.zip |
Forgot to set g_initialized to true.
svn-id: r22544
-rw-r--r-- | graphics/paletteman.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/paletteman.cpp b/graphics/paletteman.cpp index a41691b618..e967bb11a8 100644 --- a/graphics/paletteman.cpp +++ b/graphics/paletteman.cpp @@ -32,6 +32,7 @@ static bool g_initialized = false; PaletteManager::PaletteManager() { if (!g_initialized) { + g_initialized = true; _cursorPaletteStack.clear(); } } |