aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/video_v6.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-05-17 22:46:53 +0000
committerJohannes Schickel2010-05-17 22:46:53 +0000
commitcbbb78d9f29672e0f78724344040a692018fa3a5 (patch)
treef332ffc27f9aff633913378ce3628536089291d6 /engines/gob/video_v6.cpp
parent01070d72d39fba35ca8771055032c2b8a3f141f1 (diff)
downloadscummvm-rg350-cbbb78d9f29672e0f78724344040a692018fa3a5.tar.gz
scummvm-rg350-cbbb78d9f29672e0f78724344040a692018fa3a5.tar.bz2
scummvm-rg350-cbbb78d9f29672e0f78724344040a692018fa3a5.zip
Enforce conversion formatting on pointer casts in the DEV code.
svn-id: r49068
Diffstat (limited to 'engines/gob/video_v6.cpp')
-rw-r--r--engines/gob/video_v6.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/video_v6.cpp b/engines/gob/video_v6.cpp
index 6f39edb588..7285cd8958 100644
--- a/engines/gob/video_v6.cpp
+++ b/engines/gob/video_v6.cpp
@@ -39,8 +39,8 @@ Video_v6::Video_v6(GobEngine *vm) : Video_v2(vm) {
}
void Video_v6::setPrePalette() {
- byte *tpal = (byte *) _vm->_draw->_vgaPalette;
- const byte *fpal = (const byte *) _ditherPalette;
+ byte *tpal = (byte *)_vm->_draw->_vgaPalette;
+ const byte *fpal = (const byte *)_ditherPalette;
for (int i = 0; i < 256; i++) {
byte r, g, b;