diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-05-23 21:17:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-23 21:17:25 +0200 |
| commit | f4f7d6d58d9d4b5dc6920d71247895925ea247ab (patch) | |
| tree | a0c0d7dd943db885d8ad6d0feca2e16b8a480620 /platform/uwp/os_uwp.h | |
| parent | 9e2b3f0903a74c009825561559d20bfc48062446 (diff) | |
| parent | 40613221a4f255bf9115ec8fca8206b2ff222f1b (diff) | |
Merge pull request #8881 from vnen/uwp-3
Fix UWP compilation issues
Diffstat (limited to 'platform/uwp/os_uwp.h')
| -rw-r--r-- | platform/uwp/os_uwp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index d2a51aad4c..45b8eefdee 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -63,7 +63,7 @@ public: CHAR_EVENT_MESSAGE }; - InputModifierState mod_state; + bool alt, shift, control; MessageType type; bool pressed; unsigned int scancode; @@ -257,7 +257,7 @@ public: virtual bool get_swap_ok_cancel() { return true; } - void input_event(Ref<InputEvent> &p_event); + void input_event(const Ref<InputEvent> &p_event); virtual PowerState get_power_state(); virtual int get_power_seconds_left(); |