XAutoPowerDownResetTimer patch removed now we implement KeSetTimer
This commit is contained in:
parent
1cf2c17e30
commit
e7ba16f0e1
|
@ -1263,19 +1263,6 @@ DWORD WINAPI XTL::EMUPATCH(XInputGetDeviceDescription)
|
|||
RETURN(ERROR_NOT_SUPPORTED); // ERROR_DEVICE_NOT_CONNECTED;
|
||||
}
|
||||
|
||||
// ******************************************************************
|
||||
// * patch: XAutoPowerDownResetTimer
|
||||
// ******************************************************************
|
||||
int WINAPI XTL::EMUPATCH(XAutoPowerDownResetTimer)()
|
||||
{
|
||||
LOG_FUNC();
|
||||
|
||||
// Meh, that's what the 'X' is for! =]
|
||||
LOG_UNIMPLEMENTED();
|
||||
|
||||
RETURN(TRUE);
|
||||
}
|
||||
|
||||
// ******************************************************************
|
||||
// * patch: XMountMURootA
|
||||
// ******************************************************************
|
||||
|
|
|
@ -721,10 +721,12 @@ DWORD WINAPI EMUPATCH(XInputGetDeviceDescription)
|
|||
PVOID pDescription
|
||||
);
|
||||
|
||||
#if 0 // Disabled, since it just calls KeSetTimer, which we support
|
||||
// ******************************************************************
|
||||
// * patch: XAutoPowerDownResetTimer
|
||||
// ******************************************************************
|
||||
int WINAPI EMUPATCH(XAutoPowerDownResetTimer)();
|
||||
VOID WINAPI EMUPATCH(XAutoPowerDownResetTimer)();
|
||||
#endif
|
||||
|
||||
// ******************************************************************
|
||||
// * patch: ReadFileEx
|
||||
|
|
|
@ -1005,7 +1005,7 @@ OOVPATable XAPI_3911[] = {
|
|||
REGISTER_OOVPA(XMountMUA, 3911, PATCH),
|
||||
REGISTER_OOVPA(XLaunchNewImage, 3911, ALIAS, XLaunchNewImageA),
|
||||
REGISTER_OOVPA(XGetLaunchInfo, 3911, PATCH),
|
||||
REGISTER_OOVPA(XAutoPowerDownResetTimer, 3911, PATCH),
|
||||
REGISTER_OOVPA(XAutoPowerDownResetTimer, 3911, DISABLED),
|
||||
REGISTER_OOVPA(XMountMURootA, 3911, PATCH),
|
||||
REGISTER_OOVPA(XMountUtilityDrive, 3911, PATCH),
|
||||
// REGISTER_OOVPA(ReadFileEx, 3911, PATCH),
|
||||
|
|
Loading…
Reference in New Issue