mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-27 00:42:30 +03:00
Restore safe reinterpret_casts in OSXKeyState
This commit is contained in:
parent
8072594008
commit
602fd3f649
@ -415,7 +415,7 @@ OSXKeyState::pollPressedKeys(KeyButtonSet& pressedKeys) const
|
||||
{
|
||||
::KeyMap km;
|
||||
GetKeys(km);
|
||||
const UInt8* m = static_cast<const UInt8*>(km);
|
||||
const UInt8* m = reinterpret_cast<const UInt8*>(km);
|
||||
for (UInt32 i = 0; i < 16; ++i) {
|
||||
for (UInt32 j = 0; j < 8; ++j) {
|
||||
if ((m[i] & (1u << j)) != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user