diff options
author | Johannes Schickel | 2007-11-06 23:03:19 +0000 |
---|---|---|
committer | Johannes Schickel | 2007-11-06 23:03:19 +0000 |
commit | 616c8357b428c5109e882262c2d87edada3c0cdc (patch) | |
tree | 3a23c5f3a75d388121e93d7d40ccbe6fd2af0505 /graphics/surface.h | |
parent | 3592690b7865bfc0b86dae0841ff5fbae972b685 (diff) | |
download | scummvm-rg350-616c8357b428c5109e882262c2d87edada3c0cdc.tar.gz scummvm-rg350-616c8357b428c5109e882262c2d87edada3c0cdc.tar.bz2 scummvm-rg350-616c8357b428c5109e882262c2d87edada3c0cdc.zip |
- little bit more cleanup
- added fixme about Surface::move
svn-id: r29442
Diffstat (limited to 'graphics/surface.h')
-rw-r--r-- | graphics/surface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/surface.h b/graphics/surface.h index f583e4a81f..3e42b69c69 100644 --- a/graphics/surface.h +++ b/graphics/surface.h @@ -66,8 +66,9 @@ struct Surface { void drawLine(int x0, int y0, int x1, int y1, uint32 color); void hLine(int x, int y, int x2, uint32 color); void vLine(int x, int y, int y2, uint32 color); - void fillRect(const Common::Rect &r, uint32 color); + void fillRect(Common::Rect r, uint32 color); void frameRect(const Common::Rect &r, uint32 color); + // See comment in graphics/surface.cpp about it void move(int dx, int dy, int height); }; |