diff options
| author | Nicolas Bacca | 2004-01-17 23:42:15 +0000 | 
|---|---|---|
| committer | Nicolas Bacca | 2004-01-17 23:42:15 +0000 | 
| commit | 14126cde006f4cc055d60cb1b8fdf93e74c5bc6f (patch) | |
| tree | d5e5a173d2fd29410256e4290e8b0d29661ca14b | |
| parent | 76298a9cec9d8c3eba02afee32b22c2a67861a2b (diff) | |
| download | scummvm-rg350-14126cde006f4cc055d60cb1b8fdf93e74c5bc6f.tar.gz scummvm-rg350-14126cde006f4cc055d60cb1b8fdf93e74c5bc6f.tar.bz2 scummvm-rg350-14126cde006f4cc055d60cb1b8fdf93e74c5bc6f.zip | |
add_dirty_rect turned to virtual method for new CE backend
svn-id: r12460
| -rw-r--r-- | backends/sdl/sdl-common.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/backends/sdl/sdl-common.h b/backends/sdl/sdl-common.h index ceb3920aae..3d47ca582e 100644 --- a/backends/sdl/sdl-common.h +++ b/backends/sdl/sdl-common.h @@ -211,7 +211,7 @@ protected:  	void add_dirty_rgn_auto(const byte *buf);  	void mk_checksums(const byte *buf); -	void add_dirty_rect(int x, int y, int w, int h); +	virtual void add_dirty_rect(int x, int y, int w, int h);  	virtual void draw_mouse();  	virtual void undraw_mouse(); | 
