diff options
| author | Max Horn | 2003-05-15 22:36:43 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-05-15 22:36:43 +0000 | 
| commit | a8603e5bfc286dc286d20831ae3f025be0a4940c (patch) | |
| tree | a854932370ecb6b5a61f58943df62e687fd6b769 /scumm/verbs.h | |
| parent | 69c118a43e3480828a5c447aa296e82fdcce27dc (diff) | |
| download | scummvm-rg350-a8603e5bfc286dc286d20831ae3f025be0a4940c.tar.gz scummvm-rg350-a8603e5bfc286dc286d20831ae3f025be0a4940c.tar.bz2 scummvm-rg350-a8603e5bfc286dc286d20831ae3f025be0a4940c.zip | |
some more ScummVM::Rect
svn-id: r7548
Diffstat (limited to 'scumm/verbs.h')
| -rw-r--r-- | scumm/verbs.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/scumm/verbs.h b/scumm/verbs.h index 839017683d..40fe3d47d7 100644 --- a/scumm/verbs.h +++ b/scumm/verbs.h @@ -21,7 +21,8 @@  #ifndef VERBS_H  #define VERBS_H -#include "scummsys.h" +#include "common/scummsys.h" +#include "common/rect.h"  enum {  	kTextVerbType = 0, @@ -31,7 +32,7 @@ enum {  struct VerbSlot {  	int16 x, y;  	int16 right, bottom; -	int16 oldleft, oldtop, oldright, oldbottom; +	ScummVM::Rect old;  	uint16 verbid;  	uint8 color, hicolor, dimcolor, bkcolor, type;  	uint8 charset_nr, curmode; | 
