diff options
Diffstat (limited to 'include/events.hpp')
-rw-r--r-- | include/events.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/events.hpp b/include/events.hpp index 5cd8040..d98d52a 100644 --- a/include/events.hpp +++ b/include/events.hpp @@ -48,7 +48,7 @@ struct BGMToggleEvent { }; struct WindowResizeEvent { - WindowResizeEvent(int w, int h) + WindowResizeEvent(int w = 640, int h = 480) : x(w), y(h) {} int x; |