Remove explicit OSystem parameter from StackLock constructor; added OSystem::displayMessageOnOSD (not yet used; default implementation provided)
svn-id: r13413
This commit is contained in:
parent
09e3fec623
commit
39765b0d19
8 changed files with 74 additions and 56 deletions
|
@ -137,6 +137,10 @@ public:
|
|||
virtual void setFeatureState(Feature f, bool enable);
|
||||
virtual bool getFeatureState(Feature f);
|
||||
|
||||
#ifdef USE_OSD
|
||||
void displayMessageOnOSD(const char *msg);
|
||||
#endif
|
||||
|
||||
protected:
|
||||
void init_intern();
|
||||
|
||||
|
@ -150,8 +154,6 @@ protected:
|
|||
kOSDColorKey = 1,
|
||||
kOSDInitialAlpha = 80 // Initial alpha level, in percent
|
||||
};
|
||||
|
||||
void displayMessageOnOSD(const char *msg);
|
||||
#endif
|
||||
|
||||
// hardware screen
|
||||
|
@ -252,7 +254,7 @@ protected:
|
|||
void toggleMouseGrab();
|
||||
|
||||
|
||||
void internUpdateScreen();
|
||||
virtual void internUpdateScreen();
|
||||
|
||||
void load_gfx_mode();
|
||||
void unload_gfx_mode();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue