diff options
author | Andy <drumsetmonkey@gmail.com> | 2016-10-26 08:43:43 -0400 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2016-10-26 08:43:43 -0400 |
commit | e0f353be4c21f38978bef83e9651ef9eda886da4 (patch) | |
tree | 343e10ffab515f8141cd010f9f297575ad79b3a9 /include/events.hpp | |
parent | 52de6c2e6c048b84a7665b6fc583b2259bbdd3af (diff) |
Stuff is solid
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; |