1
0
mirror of synced 2024-11-14 23:07:36 +01:00

APM3 Fix attract sound and improve some other emulation

APM3 Fix attract sound and improve some other emulation
This commit is contained in:
Nico Giansanti 2021-07-15 20:21:55 +03:00
parent 97fb7254d0
commit a32ec2ec16

View File

@ -16,6 +16,7 @@ bool __fastcall ApmSystemSetting_getAdvertizeSound(bool *enable)
#ifdef _DEBUG #ifdef _DEBUG
info(true, "ApmSystemSetting_getAdvertizeSound"); info(true, "ApmSystemSetting_getAdvertizeSound");
#endif #endif
*enable = true;
return ApmSystemSetting_getAdvertizeSoundReturnValue; return ApmSystemSetting_getAdvertizeSoundReturnValue;
} }
@ -24,6 +25,7 @@ bool __fastcall ApmSystemSetting_getClosingTimes(__int64 *closingTimes)
#ifdef _DEBUG #ifdef _DEBUG
info(true, "ApmSystemSetting_getClosingTimes"); info(true, "ApmSystemSetting_getClosingTimes");
#endif #endif
*closingTimes = 0;
return ApmSystemSetting_getClosingTimesReturnValue; return ApmSystemSetting_getClosingTimesReturnValue;
} }
@ -40,6 +42,7 @@ bool __fastcall ApmSystemSetting_getFixedTitle(bool *enable)
#ifdef _DEBUG #ifdef _DEBUG
info(true, "ApmSystemSetting_getFixedTitle"); info(true, "ApmSystemSetting_getFixedTitle");
#endif #endif
*enable = false;
return ApmSystemSetting_getFixedTitleReturnValue; return ApmSystemSetting_getFixedTitleReturnValue;
} }