mirror of https://github.com/PrimeDecomp/prime.git
Match and link CControlMapper
This commit is contained in:
parent
3ef2263170
commit
dc4e515746
|
@ -40,7 +40,7 @@ LIBS = [
|
|||
["MetroidPrime/main", False],
|
||||
"MetroidPrime/IRenderer",
|
||||
"MetroidPrime/Cameras/CCameraManager",
|
||||
["MetroidPrime/CControlMapper", False],
|
||||
["MetroidPrime/CControlMapper", True],
|
||||
"MetroidPrime/Cameras/CFirstPersonCamera",
|
||||
["MetroidPrime/CObjectList", True],
|
||||
"MetroidPrime/Player/CPlayer",
|
||||
|
|
|
@ -32,7 +32,6 @@ const FAnalogInput ControlMapper::gAnalogInputs[] = {
|
|||
&CFinalInput::AL,
|
||||
&CFinalInput::AR,
|
||||
&CFinalInput::AStart,
|
||||
nullptr,
|
||||
};
|
||||
|
||||
const FDigitalInput ControlMapper::gDigitalInputs[] = {
|
||||
|
@ -59,7 +58,6 @@ const FDigitalInput ControlMapper::gDigitalInputs[] = {
|
|||
&CFinalInput::DL,
|
||||
&CFinalInput::DR,
|
||||
&CFinalInput::DStart,
|
||||
nullptr,
|
||||
};
|
||||
|
||||
const FDigitalInput ControlMapper::gPressInputs[] = {
|
||||
|
@ -86,7 +84,6 @@ const FDigitalInput ControlMapper::gPressInputs[] = {
|
|||
&CFinalInput::PL,
|
||||
&CFinalInput::PR,
|
||||
&CFinalInput::PStart,
|
||||
nullptr,
|
||||
};
|
||||
|
||||
const char* ControlMapper::GetDescriptionForFunction(EFunctionList function) {
|
||||
|
|
Loading…
Reference in New Issue