summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 4c8ef0881..b22ad5994 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -2704,8 +2704,8 @@ void Client::resizeVideo(int width, int height, const bool always)
{
// Keep a minimum size. This isn't adhered to by the actual window, but
// it keeps some window positions from getting messed up.
- width = std::max(640, width);
- height = std::max(480, height);
+ width = std::max(470, width);
+ height = std::max(320, height);
if (!mainGraphics)
return;