From cbbb78d9f29672e0f78724344040a692018fa3a5 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 17 May 2010 22:46:53 +0000 Subject: Enforce conversion formatting on pointer casts in the DEV code. svn-id: r49068 --- engines/gob/video_v6.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/gob/video_v6.cpp') 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; -- cgit v1.2.3