Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2022-09-18 19:20:45 +0300
committerJacques Lucke <jacques@blender.org>2022-09-18 19:20:45 +0300
commitd696514283857bfc771d2b38dfd0710c6a5d1046 (patch)
tree6a50704f994ed0c59e01aa1aec47294f51ff9ce2 /intern/ghost/intern/GHOST_ModifierKeys.h
parent06d85ad64ba30d734fee0cb0a9db8f9492b41c52 (diff)
parent3ff15a9e23bd8a20ee514944779a898f1fe5accb (diff)
Merge branch 'master' into temp-chunk-list
Diffstat (limited to 'intern/ghost/intern/GHOST_ModifierKeys.h')
-rw-r--r--intern/ghost/intern/GHOST_ModifierKeys.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_ModifierKeys.h b/intern/ghost/intern/GHOST_ModifierKeys.h
index ce1bf3df2ae..f83e861f8b6 100644
--- a/intern/ghost/intern/GHOST_ModifierKeys.h
+++ b/intern/ghost/intern/GHOST_ModifierKeys.h
@@ -68,5 +68,6 @@ struct GHOST_ModifierKeys {
/** Bitfield that stores the appropriate key state. */
uint8_t m_RightControl : 1;
/** Bitfield that stores the appropriate key state. */
- uint8_t m_OS : 1;
+ uint8_t m_LeftOS : 1;
+ uint8_t m_RightOS : 1;
};