CDolphinController: name known field

This commit is contained in:
Phillip Stephens 2023-10-03 23:58:10 -07:00
parent 07962b0ff0
commit 8e579a2706
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ private:
EMotorState x194_motorStates[4];
uint x1a4_controllerTypes[4];
uint x1b4_controllerTypePollTime[4];
uint x1c4_;
uint x1c4_validControllers;
uint x1c8_invalidControllers;
uint x1cc_;
};

View File

@ -8,7 +8,7 @@
#include <string.h>
CDolphinController::CDolphinController()
: x1c4_(PAD_CHAN0_BIT | PAD_CHAN1_BIT | PAD_CHAN2_BIT | PAD_CHAN3_BIT)
: x1c4_validControllers(PAD_CHAN0_BIT | PAD_CHAN1_BIT | PAD_CHAN2_BIT | PAD_CHAN3_BIT)
, x1c8_invalidControllers(0)
, x1cc_(0) {
static bool sIsInitialized = false;