diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-21 16:39:10 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-21 16:39:10 -0500 |
commit | ecc2eb73fc7532b7352274fb8145850bafaf6c20 (patch) | |
tree | b7a4ee45f8c5b75d174bb6ad2615988516a458f3 /core/input/input_event.cpp | |
parent | 975f42227f3870db153ead3f90da95e4c32a6593 (diff) | |
parent | 916d480686e339746ac4fc89079c26fe72caad53 (diff) | |
download | redot-engine-ecc2eb73fc7532b7352274fb8145850bafaf6c20.tar.gz |
Merge pull request #97707 from Sauermann/fix-input-device-clash
Fix `InputEvent` device id clash
Diffstat (limited to 'core/input/input_event.cpp')
-rw-r--r-- | core/input/input_event.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/input/input_event.cpp b/core/input/input_event.cpp index 905526bbbd..d125bad252 100644 --- a/core/input/input_event.cpp +++ b/core/input/input_event.cpp @@ -35,9 +35,6 @@ #include "core/os/keyboard.h" #include "core/os/os.h" -const int InputEvent::DEVICE_ID_EMULATION = -1; -const int InputEvent::DEVICE_ID_INTERNAL = -2; - void InputEvent::set_device(int p_device) { device = p_device; emit_changed(); |