d_a_door_push OK (#1959)

* work on d_a_push_door

* d_a_door_push OK

* remove unused asm
This commit is contained in:
Trueffel
2023-10-10 22:43:24 +02:00
committed by GitHub
parent 3fa422caac
commit c5b54dd7ec
35 changed files with 408 additions and 1872 deletions
+1 -1
View File
@@ -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;
}