summaryrefslogtreecommitdiff
path: root/core/os
diff options
context:
space:
mode:
Diffstat (limited to 'core/os')
-rw-r--r--core/os/keyboard.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/os/keyboard.h b/core/os/keyboard.h
index 556ba3638e..86b86fb970 100644
--- a/core/os/keyboard.h
+++ b/core/os/keyboard.h
@@ -315,7 +315,7 @@ constexpr Key operator-(uint32_t a, Key b) {
}
constexpr Key &operator-=(Key &a, int b) {
- a = static_cast<Key>(static_cast<int>(a) - static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) - static_cast<int>(b));
return a;
}
@@ -340,17 +340,17 @@ constexpr Key operator|(Key a, Key b) {
}
constexpr Key &operator|=(Key &a, Key b) {
- a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
return a;
}
constexpr Key &operator|=(Key &a, KeyModifierMask b) {
- a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) | static_cast<int>(b));
return a;
}
constexpr Key &operator&=(Key &a, KeyModifierMask b) {
- a = static_cast<Key>(static_cast<int>(a) & static_cast<int>(b));
+ a = static_cast<Key>(static_cast<int>(a) & static_cast<int>(b));
return a;
}