add a page for EXCEED GEAR (#195)

* add EXCEED GEAR

* add sdvx6.png

* add sdvx6.html
This commit is contained in:
Silverdesu
2021-05-23 18:56:47 -07:00
committed by GitHub
parent 0fafb2ec9e
commit 42241b8247
3 changed files with 53 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
<!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>