summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/setup_video.cpp')
-rw-r--r--src/gui/setup_video.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index 4d030238e..12ae9fe83 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -512,7 +512,7 @@ void Setup_Video::action(const gcn::ActionEvent &event)
#if defined(WIN32) || defined(__APPLE__) || defined(ANDROID)
if (!config.getIntValue("opengl"))
{
- Client::resize(width, height);
+ client->resizeVideo(width, height);
}
else
{
@@ -536,7 +536,7 @@ void Setup_Video::action(const gcn::ActionEvent &event)
}
}
#else
- Client::resize(width, height);
+ client->resizeVideo(width, height);
#endif
}