diff options
| author | Johannes Schickel | 2010-10-13 03:57:44 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2010-10-13 03:57:44 +0000 | 
| commit | 75e8452b6e6a2bf4fb2f588aa00b428a60d873b5 (patch) | |
| tree | f29541d55309487a94bd1d38e8b53bb3dde9aec6 /engines/sci/engine/selector.h | |
| parent | 48ee83b88957dab86bc763e9ef21a70179fa8679 (diff) | |
| parent | e9f50882ea5b6beeefa994040be9d3bab6a1f107 (diff) | |
| download | scummvm-rg350-75e8452b6e6a2bf4fb2f588aa00b428a60d873b5.tar.gz scummvm-rg350-75e8452b6e6a2bf4fb2f588aa00b428a60d873b5.tar.bz2 scummvm-rg350-75e8452b6e6a2bf4fb2f588aa00b428a60d873b5.zip | |
OPENGL: Merged from trunk, from rev 52105 to 53396.
This includes an rather hacky attempt to merge all the recent gp2x backend
changes into the branch. I suppose the gp2x backend and probably all new
backends, i.e. gph, dingux etc., might not compile anymore.
Since I have no way of testing those it would be nice if porters could look
into getting those up to speed in this branch.
svn-id: r53399
Diffstat (limited to 'engines/sci/engine/selector.h')
| -rw-r--r-- | engines/sci/engine/selector.h | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/engines/sci/engine/selector.h b/engines/sci/engine/selector.h index 00e795c1b9..98157c3eaf 100644 --- a/engines/sci/engine/selector.h +++ b/engines/sci/engine/selector.h @@ -40,6 +40,7 @@ struct SelectorCache {  	}  	// Statically defined selectors, (almost the) same in all SCI versions +	Selector _info_;  	Selector y;  	Selector x;  	Selector view, loop, cel; ///< Description of a specific image @@ -58,7 +59,9 @@ struct SelectorCache {  	Selector state, font, type;///< Used by controls  	// window  	Selector cursor, max; ///< Used by EditControl -	// mark, who +	Selector mark; //< Used by list controls +	Selector sort; //< Used by list controls (script internal, is needed by us for QfG3 import room) +	// who  	Selector message; ///< Used by GetEvent  	// edit  	Selector play; ///< Play function (first function to be called) @@ -127,8 +130,6 @@ struct SelectorCache {  	// SCI1.1 Mac icon bar selectors  	Selector iconIndex; ///< Used to index icon bar objects -	Selector port; // used by a hoyle 4 workaround -  #ifdef ENABLE_SCI32  	Selector data; // Used by Array()/String()  	Selector picture; // Used to hold the picture ID for SCI32 pictures | 
