diff options
author | Max Horn | 2010-03-22 20:28:08 +0000 |
---|---|---|
committer | Max Horn | 2010-03-22 20:28:08 +0000 |
commit | 92c896d88317b64a2cc99fc3617f3405481e90a2 (patch) | |
tree | 78133d8095719a5b5564ea14a6f8230ab738106f /engines/sci/graphics | |
parent | dd7891cdadc5c2e4f9d1c10d229c4c0d7235f8b1 (diff) | |
download | scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.tar.gz scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.tar.bz2 scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.zip |
Patch #2973290: Semicolon cleanup
svn-id: r48359
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/animate.h | 2 | ||||
-rw-r--r-- | engines/sci/graphics/coordadjuster.h | 14 | ||||
-rw-r--r-- | engines/sci/graphics/screen.h | 12 |
3 files changed, 14 insertions, 14 deletions
diff --git a/engines/sci/graphics/animate.h b/engines/sci/graphics/animate.h index 44b91024cd..2cc59b1767 100644 --- a/engines/sci/graphics/animate.h +++ b/engines/sci/graphics/animate.h @@ -104,7 +104,7 @@ public: void addToPicDrawCels(); void addToPicDrawView(GuiResourceId viewId, int16 loopNo, int16 celNo, int16 leftPos, int16 topPos, int16 priority, int16 control); - uint16 getLastCastCount() { return _lastCastCount; }; + uint16 getLastCastCount() { return _lastCastCount; } virtual void kernelAnimate(reg_t listReference, bool cycle, int argc, reg_t *argv); virtual void kernelAddToPicList(reg_t listReference, int argc, reg_t *argv); diff --git a/engines/sci/graphics/coordadjuster.h b/engines/sci/graphics/coordadjuster.h index 1aa79f25f3..9b2bef48f1 100644 --- a/engines/sci/graphics/coordadjuster.h +++ b/engines/sci/graphics/coordadjuster.h @@ -41,16 +41,16 @@ class GfxPorts; class GfxCoordAdjuster { public: GfxCoordAdjuster(); - virtual ~GfxCoordAdjuster() { }; + virtual ~GfxCoordAdjuster() { } - virtual void kernelGlobalToLocal(int16 &x, int16 &y, reg_t planeObject = NULL_REG) { }; - virtual void kernelLocalToGlobal(int16 &x, int16 &y, reg_t planeObject = NULL_REG) { }; + virtual void kernelGlobalToLocal(int16 &x, int16 &y, reg_t planeObject = NULL_REG) { } + virtual void kernelLocalToGlobal(int16 &x, int16 &y, reg_t planeObject = NULL_REG) { } - virtual Common::Rect onControl(Common::Rect rect) { return rect; }; - virtual void setCursorPos(Common::Point &pos) { }; - virtual void moveCursor(Common::Point &pos) { }; + virtual Common::Rect onControl(Common::Rect rect) { return rect; } + virtual void setCursorPos(Common::Point &pos) { } + virtual void moveCursor(Common::Point &pos) { } - virtual Common::Rect pictureGetDisplayArea() { return Common::Rect(0, 0); }; + virtual Common::Rect pictureGetDisplayArea() { return Common::Rect(0, 0); } private: }; diff --git a/engines/sci/graphics/screen.h b/engines/sci/graphics/screen.h index f5e64986ea..6d8b6f7c9a 100644 --- a/engines/sci/graphics/screen.h +++ b/engines/sci/graphics/screen.h @@ -51,12 +51,12 @@ public: GfxScreen(ResourceManager *resMan, int16 width = 320, int16 height = 200, bool upscaledHires = false); ~GfxScreen(); - uint16 getWidth() { return _width; }; - uint16 getHeight() { return _height; }; - uint16 getDisplayWidth() { return _displayWidth; }; - uint16 getDisplayHeight() { return _displayHeight; }; - byte getColorWhite() { return _colorWhite; }; - byte getColorDefaultVectorData() { return _colorDefaultVectorData; }; + uint16 getWidth() { return _width; } + uint16 getHeight() { return _height; } + uint16 getDisplayWidth() { return _displayWidth; } + uint16 getDisplayHeight() { return _displayHeight; } + byte getColorWhite() { return _colorWhite; } + byte getColorDefaultVectorData() { return _colorDefaultVectorData; } void copyToScreen(); void copyFromScreen(byte *buffer); |