aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicola Mettifogo2007-03-14 21:11:04 +0000
committerNicola Mettifogo2007-03-14 21:11:04 +0000
commit5dae85ad110ca6cc3ecc10c3283bc81e0131053b (patch)
tree58f278736b056d3a5cd693c4542078b56305e3ee
parenta9191d11199a739caa1a137cfee0c0965816c3b1 (diff)
downloadscummvm-rg350-5dae85ad110ca6cc3ecc10c3283bc81e0131053b.tar.gz
scummvm-rg350-5dae85ad110ca6cc3ecc10c3283bc81e0131053b.tar.bz2
scummvm-rg350-5dae85ad110ca6cc3ecc10c3283bc81e0131053b.zip
removed dead code
svn-id: r26138
-rw-r--r--engines/parallaction/graphics.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp
index a28d729a17..da448ff9a4 100644
--- a/engines/parallaction/graphics.cpp
+++ b/engines/parallaction/graphics.cpp
@@ -318,25 +318,6 @@ void Gfx::copyScreen(Gfx::Buffers srcbuffer, Gfx::Buffers dstbuffer) {
return;
}
-/*
-void Gfx::copyRect(Gfx::Buffers srcbuffer, uint16 sx, uint16 sy, Gfx::Buffers dstbuffer, uint16 dx, uint16 dy, uint16 w, uint16 h) {
-
- byte *s = _buffers[srcbuffer] + (sx + sy * SCREEN_WIDTH);
- byte *d = _buffers[dstbuffer] + (dx + dy * SCREEN_WIDTH);
-
- for (uint16 i = 0; i < h; i++) {
- memcpy(d, s, w);
-
- s += SCREEN_WIDTH;
- d += SCREEN_WIDTH;
- }
-
- if (dstbuffer == kBitFront) updateScreen();
-
- return;
-
-}
-*/
void Gfx::floodFill(Gfx::Buffers buffer, const Common::Rect& r, byte color) {
// printf("Gfx::floodFill(%i, %i, %i, %i, %i)\n", color, left, top, right, bottom);
@@ -508,9 +489,6 @@ void Gfx::setMousePointer(int16 index) {
} else {
- // FIXME: standard mouse arrow must be combined with item
- // but it is not at the moment
-
// inventory item pointer
StaticCnv mouse_pointer;
memcpy(&mouse_pointer, &_mouseComposedArrow, sizeof(StaticCnv));