AGS: Remove unneeded video_on_gfxmode_changed method

This commit is contained in:
Paul Gilbert 2021-07-01 20:48:21 -07:00
parent 62aea4c299
commit 4601631cbe
3 changed files with 0 additions and 8 deletions

View File

@ -292,7 +292,6 @@ void engine_post_gfxmode_setup(const Size &init_desktop) {
engine_post_gfxmode_screen_setup(dm, has_driver_changed);
engine_post_gfxmode_mouse_setup(dm, init_desktop);
video_on_gfxmode_changed();
invalidate_screen();
}

View File

@ -157,8 +157,4 @@ bool play_flc_file(int numb, int playflags) {
return false;
}
void video_on_gfxmode_changed() {
warning("TODO: video_on_gfxmode_changed");
}
} // namespace AGS3

View File

@ -30,9 +30,6 @@ extern bool play_mpeg_video(const char *name, int skip, int flags, bool showErro
extern bool play_theora_video(const char *name, int skip, int flags, bool showError);
extern bool play_flc_file(int numb, int playflags);
// Update video playback if the display mode has changed
void video_on_gfxmode_changed();
} // namespace AGS3
#endif