mirror of
https://github.com/halpz/re3.git
synced 2025-07-03 07:20:48 +00:00
Merge remote-tracking branch 'upstream/miami' into miami
This commit is contained in:
@ -134,7 +134,23 @@ public:
|
||||
void ReduceHornCounter(void);
|
||||
};
|
||||
|
||||
// These functions and function names are made up
|
||||
|
||||
inline int8 GetBikeDoorFlag(int32 carnode) {
|
||||
switch (carnode) {
|
||||
case CAR_DOOR_RR:
|
||||
case CAR_DOOR_LR:
|
||||
return CAR_DOOR_FLAG_RR | CAR_DOOR_FLAG_LR;
|
||||
case CAR_DOOR_RF:
|
||||
case CAR_DOOR_LF:
|
||||
return CAR_DOOR_FLAG_RF | CAR_DOOR_FLAG_LF;
|
||||
default:
|
||||
return CAR_DOOR_FLAG_UNKNOWN;
|
||||
}
|
||||
}
|
||||
|
||||
// for m_nGettingOutFlags
|
||||
inline int8 GetBikeDoorFlagInclJumpInFromFront(int32 carnode) {
|
||||
switch (carnode) {
|
||||
case CAR_DOOR_RR:
|
||||
case CAR_DOOR_LR:
|
||||
|
Reference in New Issue
Block a user