diff options
author | Torbjörn Andersson | 2009-08-15 14:13:48 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-08-15 14:13:48 +0000 |
commit | 762d2dc03a7ae28dc49ad4e13720c4071cb6bae5 (patch) | |
tree | 3e55a7fe2c9ba84c9f2cb988871278de73a1ba19 /engines/gob | |
parent | 17e7f46501e2f133088b5c9ba1fd771ab79b4ba0 (diff) | |
download | scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.tar.gz scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.tar.bz2 scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.zip |
Removed unnecessary semi-colons.
svn-id: r43409
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/video_v6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/video_v6.cpp b/engines/gob/video_v6.cpp index 74447f1a84..c51b027bad 100644 --- a/engines/gob/video_v6.cpp +++ b/engines/gob/video_v6.cpp @@ -39,7 +39,7 @@ Video_v6::Video_v6(GobEngine *vm) : Video_v2(vm) { } void Video_v6::setPrePalette() { - byte *tpal = (byte *) _vm->_draw->_vgaPalette;; + byte *tpal = (byte *) _vm->_draw->_vgaPalette; const byte *fpal = (const byte *) _ditherPalette; for (int i = 0; i < 256; i++) { |