diff options
| author | Trueffel <106771418+Trueffeloot@users.noreply.github.com> | 2023-10-10 22:43:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-10 23:43:24 +0300 |
| commit | c5b54dd7ec656e70ced5d1363a6862aecece6afc (patch) | |
| tree | 4e56f0fcc983db468e296a8dc5071ede613906ed /include/SSystem | |
| parent | 3fa422caac37ca8777c57d8451cdf889a1d850d2 (diff) | |
d_a_door_push OK (#1959)
* work on d_a_push_door
* d_a_door_push OK
* remove unused asm
Diffstat (limited to 'include/SSystem')
| -rw-r--r-- | include/SSystem/SComponent/c_lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/SSystem/SComponent/c_lib.h b/include/SSystem/SComponent/c_lib.h index 252defbfdd..9e6ce9c990 100644 --- a/include/SSystem/SComponent/c_lib.h +++ b/include/SSystem/SComponent/c_lib.h @@ -46,7 +46,7 @@ inline void cLib_onBit(T& value, u8 bit) { } template <typename T> -inline T cLib_checkBit(T& value, u8 bit) { +inline u8 cLib_checkBit(T& value, u8 bit) { return value & bit; } |
