Graphics: Stub out play_movie

Some people are using it to detect the RGSS version.
This commit is contained in:
Mook 2015-10-30 08:01:36 -07:00
parent 7bf6eca362
commit 8e411cbcfe
3 changed files with 23 additions and 0 deletions

View file

@ -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)

View file

@ -54,6 +54,7 @@ public:
int width() const;
int height() const;
void resizeScreen(int width, int height);
void playMovie(const char *filename);
void reset();