Codechange: Silence warnings about intentionally unused parameters.

This commit is contained in:
frosch
2023-09-16 22:20:53 +02:00
committed by frosch
parent df400ef84a
commit b6c8f301be
227 changed files with 972 additions and 1039 deletions

View File

@@ -42,7 +42,7 @@ const char *VideoDriver_Null::Start(const StringList &parm)
void VideoDriver_Null::Stop() { }
void VideoDriver_Null::MakeDirty(int left, int top, int width, int height) {}
void VideoDriver_Null::MakeDirty(int, int, int, int) {}
void VideoDriver_Null::MainLoop()
{
@@ -61,6 +61,6 @@ void VideoDriver_Null::MainLoop()
}
}
bool VideoDriver_Null::ChangeResolution(int w, int h) { return false; }
bool VideoDriver_Null::ChangeResolution(int, int) { return false; }
bool VideoDriver_Null::ToggleFullscreen(bool fs) { return false; }
bool VideoDriver_Null::ToggleFullscreen(bool) { return false; }