Graphics: Stub out play_movie
Some people are using it to detect the RGSS version.
This commit is contained in:
parent
7bf6eca362
commit
8e411cbcfe
3 changed files with 23 additions and 0 deletions
|
@ -957,6 +957,11 @@ void Graphics::resizeScreen(int width, int height)
|
|||
shState->eThread().requestWindowResize(width, height);
|
||||
}
|
||||
|
||||
void Graphics::playMovie(const char *filename)
|
||||
{
|
||||
Debug() << "Graphics.playMovie(" << filename << ") not implemented";
|
||||
}
|
||||
|
||||
DEF_ATTR_RD_SIMPLE(Graphics, Brightness, int, p->brightness)
|
||||
|
||||
void Graphics::setBrightness(int value)
|
||||
|
|
|
@ -54,6 +54,7 @@ public:
|
|||
int width() const;
|
||||
int height() const;
|
||||
void resizeScreen(int width, int height);
|
||||
void playMovie(const char *filename);
|
||||
|
||||
void reset();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue