mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Codecs: disable Miles bank patch validation
The validation code uses internal structures of the Miles Sound System which is different for each version of the sound engine versions we support, which makes switching banks impossible without recompiling the SDK. The bank patches rarely fail, but if we decide to keep this we should seek for an alternative approach i.e. using the DLL interfaces directly.
This commit is contained in:
parent
f18dd71f4b
commit
56aba36b8c
@ -117,6 +117,6 @@ void MilesCore::Detour(const bool bAttach) const
|
|||||||
DetourSetup(&v_AIL_LogFunc, &AIL_LogFunc, bAttach);
|
DetourSetup(&v_AIL_LogFunc, &AIL_LogFunc, bAttach);
|
||||||
DetourSetup(&v_Miles_Initialize, &Miles_Initialize, bAttach);
|
DetourSetup(&v_Miles_Initialize, &Miles_Initialize, bAttach);
|
||||||
DetourSetup(&v_MilesQueueEventRun, &MilesQueueEventRun, bAttach);
|
DetourSetup(&v_MilesQueueEventRun, &MilesQueueEventRun, bAttach);
|
||||||
DetourSetup(&v_MilesBankPatch, &MilesBankPatch, bAttach);
|
//DetourSetup(&v_MilesBankPatch, &MilesBankPatch, bAttach);
|
||||||
DetourSetup(&v_CSOM_AddEventToQueue, &CSOM_AddEventToQueue, bAttach);
|
DetourSetup(&v_CSOM_AddEventToQueue, &CSOM_AddEventToQueue, bAttach);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user