mirror of
https://github.com/mon/BemaniPatcher.git
synced 2026-08-01 22:10:41 -07:00
48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<title>SDVX VI DLL Modder</title>
|
||
|
|
<link rel="stylesheet" href="css/style.css" />
|
||
|
|
<!-- don't hate -->
|
||
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||
|
|
<script type="text/javascript" src="js/FileSaver.min.js"></script>
|
||
|
|
<script type="text/javascript" src="js/dllpatcher.js"></script>
|
||
|
|
<script type="text/javascript">
|
||
|
|
window.addEventListener("load", function () {
|
||
|
|
new PatchContainer([
|
||
|
|
new Patcher("soundvoltex.dll", "2021-04-28", [
|
||
|
|
{
|
||
|
|
name: "Disable power change", //patch by Xyen
|
||
|
|
tooltip: "Prevents power mode change on startup",
|
||
|
|
patches: [
|
||
|
|
{ offset: 0x1EC553,
|
||
|
|
off: [0x75], on: [0xEB]},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: "Disable monitor change", //patch by Xyen
|
||
|
|
tooltip: "Prevents monitor setting changes on startup",
|
||
|
|
patches: [
|
||
|
|
{ offset: 0x1EC5EB,
|
||
|
|
off: [0x75], on: [0xEB]},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: "Shared mode WASAPI",
|
||
|
|
tooltip: "Only replaces the first audio device init attempt. Set output to 44100Hz 16bit if it doesn\'t work.",
|
||
|
|
patches: [
|
||
|
|
{ offset: 0x42B089,
|
||
|
|
off: [0x04], on: [0x00]},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
]),
|
||
|
|
]);
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>SDVX VI DLL Modder</h1>
|
||
|
|
</body>
|
||
|
|
</html>
|