psx: fix flaky MODE button on dualshock (disabled by uninitialized memory randomly on bootup)
This commit is contained in:
parent
eb02639748
commit
286d03a359
Binary file not shown.
|
@ -243,6 +243,13 @@
|
|||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
</Link>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
<PostBuildEvent>
|
||||
<Command>..\..\..\dist\upx -9 $(TargetPath)</Command>
|
||||
</PostBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
|
|
|
@ -194,6 +194,8 @@ void InputDevice_DualShock::CheckManualAnaModeChange(void)
|
|||
|
||||
void InputDevice_DualShock::Power(void)
|
||||
{
|
||||
amct_enabled = false; //for octoshock, this function isn't supported
|
||||
|
||||
combo_anatoggle_counter = -2;
|
||||
lastts = 0;
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue