mirror of
https://github.com/two-torial/webpatcher.git
synced 2024-11-14 19:07:37 +01:00
add a page for EXCEED GEAR (#195)
* add EXCEED GEAR * add sdvx6.png * add sdvx6.html
This commit is contained in:
parent
0fafb2ec9e
commit
42241b8247
BIN
img/sdvx6.png
Normal file
BIN
img/sdvx6.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
@ -302,6 +302,12 @@
|
||||
<div>SDVX V VIVID WAVE</div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="sdvx6.html" class="gameicon">
|
||||
<div>
|
||||
<img src="img/sdvx6.png">
|
||||
<div>SDVX VI EXCEED GEAR</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<pre class="tagline">Patches are community created. <a href="https://github.com/mon/BemaniPatcher/">Submit your own via Pull Request!</a></pre>
|
||||
<pre class="tagline"><em>Converted to a web-tool by <a href="https://github.com/mon/">mon</a></em></pre>
|
||||
|
47
sdvx6.html
Normal file
47
sdvx6.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user