mirror of https://github.com/PrimeDecomp/prime.git
CDolphinController: name known field
This commit is contained in:
parent
07962b0ff0
commit
8e579a2706
|
@ -33,7 +33,7 @@ private:
|
||||||
EMotorState x194_motorStates[4];
|
EMotorState x194_motorStates[4];
|
||||||
uint x1a4_controllerTypes[4];
|
uint x1a4_controllerTypes[4];
|
||||||
uint x1b4_controllerTypePollTime[4];
|
uint x1b4_controllerTypePollTime[4];
|
||||||
uint x1c4_;
|
uint x1c4_validControllers;
|
||||||
uint x1c8_invalidControllers;
|
uint x1c8_invalidControllers;
|
||||||
uint x1cc_;
|
uint x1cc_;
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
CDolphinController::CDolphinController()
|
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)
|
, x1c8_invalidControllers(0)
|
||||||
, x1cc_(0) {
|
, x1cc_(0) {
|
||||||
static bool sIsInitialized = false;
|
static bool sIsInitialized = false;
|
||||||
|
|
Loading…
Reference in New Issue