diff options
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/gui/gui_gfx.cpp | 4 | ||||
-rw-r--r-- | engines/sci/gui/gui_palette.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/gui/gui_gfx.cpp b/engines/sci/gui/gui_gfx.cpp index 963ff75e03..a23fbda762 100644 --- a/engines/sci/gui/gui_gfx.cpp +++ b/engines/sci/gui/gui_gfx.cpp @@ -290,7 +290,7 @@ void SciGuiGfx::BitsGetRect(GuiMemoryHandle memoryHandle, Common::Rect *destRect byte *memoryPtr = NULL; if (!memoryHandle.isNull()) { - memoryPtr = kmem(_segMan, memoryHandle);; + memoryPtr = kmem(_segMan, memoryHandle); if (memoryPtr) { _screen->bitsGetRect(memoryPtr, destRect); @@ -302,7 +302,7 @@ void SciGuiGfx::BitsRestore(GuiMemoryHandle memoryHandle) { byte *memoryPtr = NULL; if (!memoryHandle.isNull()) { - memoryPtr = kmem(_segMan, memoryHandle);; + memoryPtr = kmem(_segMan, memoryHandle); if (memoryPtr) { _screen->bitsRestore(memoryPtr); diff --git a/engines/sci/gui/gui_palette.cpp b/engines/sci/gui/gui_palette.cpp index bba361bab7..ea4911464e 100644 --- a/engines/sci/gui/gui_palette.cpp +++ b/engines/sci/gui/gui_palette.cpp @@ -230,7 +230,7 @@ void SciGuiPalette::merge(GuiPalette *pFrom, GuiPalette *pTo, uint16 flag) { pTo->colors[res & 0xFF].used |= 0x10; } } - pTo->timestamp = g_system->getMillis() * 60 / 1000;; + pTo->timestamp = g_system->getMillis() * 60 / 1000; } uint16 SciGuiPalette::matchColor(GuiPalette *pPal, byte r, byte g, byte b) { @@ -292,7 +292,7 @@ void SciGuiPalette::setIntensity(uint16 fromColor, uint16 toColor, uint16 intens void SciGuiPalette::animate(byte fromColor, byte toColor, int speed) { GuiColor col; int len = toColor - fromColor - 1; - uint32 now = g_system->getMillis() * 60 / 1000;; + uint32 now = g_system->getMillis() * 60 / 1000; // search for sheduled animations with the same 'from' value int sz = _schedules.size(); |