Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2015-01-06 21:12:09 +0000
committerStijn Buys <ingar@osirion.org>2015-01-06 21:12:09 +0000
commit22785c4e7eb0be49a795f4b2bcdf5cbda1626a5a (patch)
tree9c71eb705e6eda465e0fbae9784a6638cda8884e /src/client/input.cc
parentbea1b04f96502741f1e3b0f0c4c7fe506306baa0 (diff)
Corrected a window resize issue.
Diffstat (limited to 'src/client/input.cc')
-rw-r--r--src/client/input.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/input.cc b/src/client/input.cc
index 9b2521e..0ffffad 100644
--- a/src/client/input.cc
+++ b/src/client/input.cc
@@ -790,7 +790,7 @@ void frame()
case SDL_WINDOWEVENT:
if (event.window.event == SDL_WINDOWEVENT_RESIZED)
{
- video::resize(event.window.data1, event.window.data2);
+ video::resize(event.window.windowID, event.window.data1, event.window.data2);
}
break;