mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-28 23:03:01 +05:00
Scan for A and B drives looking for audio files - VC
This commit is contained in:
parent
7441e28d41
commit
d13d8dc05c
1 changed files with 11 additions and 0 deletions
|
@ -280,6 +280,10 @@ void Patch_VC_10(const RECT& desktop)
|
|||
Patch<BYTE>(0x47C11E, 0xEB);
|
||||
Patch<BYTE>(0x47CD94, 0xEB);
|
||||
Nop(0x47C15A, 2);
|
||||
|
||||
// Scan for A/B drives looking for audio files
|
||||
Patch<DWORD>(0x5D7941, 'A');
|
||||
Patch<DWORD>(0x5D7B04, 'A');
|
||||
}
|
||||
|
||||
void Patch_VC_11(const RECT& desktop)
|
||||
|
@ -387,6 +391,10 @@ void Patch_VC_11(const RECT& desktop)
|
|||
Patch<BYTE>(0x47C11E, 0xEB);
|
||||
Patch<BYTE>(0x47CD94, 0xEB);
|
||||
Nop(0x47C15A, 2);
|
||||
|
||||
// Scan for A/B drives looking for audio files
|
||||
Patch<DWORD>(0x5D7961, 'A');
|
||||
Patch<DWORD>(0x5D7B24, 'A');
|
||||
}
|
||||
|
||||
void Patch_VC_Steam(const RECT& desktop)
|
||||
|
@ -494,6 +502,9 @@ void Patch_VC_Steam(const RECT& desktop)
|
|||
Patch<BYTE>(0x47BFFE, 0xEB);
|
||||
Patch<BYTE>(0x47CC74, 0xEB);
|
||||
Nop(0x47C03A, 2);
|
||||
|
||||
// Scan for A/B drives looking for audio files
|
||||
Patch<DWORD>(0x5D7764, 'A');
|
||||
}
|
||||
|
||||
void Patch_VC_JP()
|
||||
|
|
Loading…
Reference in a new issue