We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58449dc commit 3445c3aCopy full SHA for 3445c3a
c/uwapi/uwapi/scripts.hpp
@@ -44,9 +44,9 @@ namespace uw
44
uint16 count;
45
};
46
47
- uint16_t high = static_cast<uint16_t>(id >> 16);
48
uint16_t low = static_cast<uint16_t>(id & 0xFFFF);
49
- return ShootingControlData{ (UwShootingEventEnum)high, low };
+ uint16_t high = static_cast<uint16_t>(id >> 16);
+ return ShootingControlData{ (UwShootingEventEnum)low, high };
50
}
51
52
0 commit comments