aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/palette32.cpp
diff options
context:
space:
mode:
authorColin Snover2016-01-14 10:58:37 -0600
committerColin Snover2016-01-14 17:21:05 -0600
commit40f6d74d97618adc80d10244a77c444bf7e613eb (patch)
tree9d8483df891c8100a17006cd72e8821358f011c0 /engines/sci/graphics/palette32.cpp
parent8224d321226793c6d7499c1d1548269ef3912327 (diff)
downloadscummvm-rg350-40f6d74d97618adc80d10244a77c444bf7e613eb.tar.gz
scummvm-rg350-40f6d74d97618adc80d10244a77c444bf7e613eb.tar.bz2
scummvm-rg350-40f6d74d97618adc80d10244a77c444bf7e613eb.zip
SCI: Minor clean-ups to comments and null pointer values
Diffstat (limited to 'engines/sci/graphics/palette32.cpp')
-rw-r--r--engines/sci/graphics/palette32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/palette32.cpp b/engines/sci/graphics/palette32.cpp
index 9aa08782a5..8ce8b85678 100644
--- a/engines/sci/graphics/palette32.cpp
+++ b/engines/sci/graphics/palette32.cpp
@@ -297,7 +297,7 @@ byte GfxPalette32::matchClutColor(uint16 color) {
void GfxPalette32::unloadClut() {
// This will only unload the actual table, but not reset any palette
delete[] _clutTable;
- _clutTable = 0;
+ _clutTable = nullptr;
}
//