diff options
Diffstat (limited to 'engines/simon/simon.h')
-rw-r--r-- | engines/simon/simon.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/simon/simon.h b/engines/simon/simon.h index d63abf15b8..382669506e 100644 --- a/engines/simon/simon.h +++ b/engines/simon/simon.h @@ -650,7 +650,6 @@ protected: void printVerbOf(uint hitarea_id); HitArea *findHitAreaByID(uint hitarea_id); - void printInteractText(uint16 num, const char *string); void showActionString(const byte *string); void videoPutchar(WindowBlock *window, byte c, byte b = 0); void clearWindow(WindowBlock *window); @@ -662,8 +661,6 @@ protected: void setup_hitarea_from_pos(uint x, uint y, uint mode); void displayName(HitArea * ha); - bool printTextOf(uint a, uint x, uint y); - bool printNameOf(Item *item, uint x, uint y); void displayBoxStars(); void hitarea_stuff(); @@ -698,9 +695,13 @@ protected: void loadSprite(uint windowNum, uint vga_res, uint vga_sprite_id, uint x, uint y, uint palette); void o_defineWindow(uint a, uint b, uint c, uint d, uint e, uint f, uint g, uint h); void playSpeech(uint speech_id, uint vga_sprite_id); - void printScreenText(uint vga_sprite_id, uint color, const char *string_ptr, int16 x, int16 y, int16 width); WindowBlock *openWindow(uint x, uint y, uint w, uint h, uint flags, uint fill_color, uint text_color); + bool printTextOf(uint a, uint x, uint y); + bool printNameOf(Item *item, uint x, uint y); + void printInteractText(uint16 num, const char *string); + void printScreenText(uint vga_sprite_id, uint color, const char *string_ptr, int16 x, int16 y, int16 width); + void renderStringAmiga(uint vga_sprite_id, uint color, uint width, uint height, const char *txt); void renderString(uint vga_sprite_id, uint color, uint width, uint height, const char *txt); @@ -969,6 +970,7 @@ public: void o3_hyperLinkOn(bool &cond, int &ret); void o3_hyperLinkOff(bool &cond, int &ret); void o3_checkPaths(bool &cond, int &ret); + void o3_mouseOff(bool &cond, int &ret); void o3_loadSmack(bool &cond, int &ret); void o3_playSmack(bool &cond, int &ret); void o3_centreScroll(bool &cond, int &ret); |