mirror of
https://github.com/two-torial/webpatcher.git
synced 2025-01-31 20:15:23 +01:00
Add pop'n peace hex edits (#81)
This commit is contained in:
parent
74acadb87a
commit
e33e990da8
BIN
img/peace.png
Normal file
BIN
img/peace.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
@ -108,6 +108,10 @@
|
||||
<img src="img/usaneko.png">
|
||||
<div>pop'n music 24 うさぎと猫と少年の夢</div>
|
||||
</div></a>
|
||||
<a href="popn25peace.html" class="gameicon"><div>
|
||||
<img src="img/peace.png">
|
||||
<div>pop'n music 25 peace</div>
|
||||
</div></a>
|
||||
<a href="reflecbeat-groovin-upper.html" class="gameicon"><div>
|
||||
<img src="img/groovin.png">
|
||||
<div>REFLEC BEAT groovin'!! Upper</div>
|
||||
|
41
popn25peace.html
Normal file
41
popn25peace.html
Normal file
@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>pop'n music peace 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 DllPatcherContainer([
|
||||
new DllPatcher("popn22", [
|
||||
{
|
||||
name: "E: drive fix",
|
||||
tooltip: "Fix crash caused by no E: drive",
|
||||
patches: [{offset : 0x273C38, off: [0x65, 0x3A, 0x2F], on: [0x64, 0x65, 0x76]}]
|
||||
},
|
||||
{
|
||||
name: "HDMI audio fix",
|
||||
patches: [{offset : 0x1307EC, off: [0x85, 0xC0, 0x75, 0x96], on: [0x90, 0x90, 0x90, 0x90]}]
|
||||
},
|
||||
{
|
||||
name: "Prevent Windows volume change on boot",
|
||||
tooltip: "If your volume gets forced to max, turn this on",
|
||||
patches: [{offset: 0x1333F0, off: [0x83], on: [0xC3]}]
|
||||
},
|
||||
{
|
||||
name: "Boot to event mode",
|
||||
patches: [{offset: 0x105280, off: [0x8B, 0x00, 0xC3, 0xCC], on: [0x31, 0xC0, 0x40, 0xC3]}]
|
||||
},
|
||||
], "2019-04-23"),
|
||||
]);
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>pop'n music peace DLL Modder</h1>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user