Added files

This commit is contained in:
2025-04-04 22:10:30 +02:00
parent f7d6562bbe
commit 37524d7a0c
7 changed files with 569 additions and 0 deletions

32
index.html Normal file
View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YUZU Patcher</title>
<link rel="stylesheet" href="./css/style.css">
<script src="./js/FileSaver.js"></script>
<script src="./js/main.js"></script>
<script src="./js/button.js"></script>
</head>
<body>
<main>
<section>
<h1>A yuzu Emulator fork patcher</h1>
<p>
yuzu forks often change the application and engine name given to Vulkan.
<br>
This has the side effect of not applying a driver level patch by AMD for RDNA3 graphic cards, causing visual issues.
<br>
This tool replaces the application and engine name given to Vulkan with yuzu's.
</p>
<a rel="author">Sunpy</a>
<a id="upload" class="big btn cbtn" style="margin-top:6vmin">
<i id="button_text"></i>
<input type="file" id="input" />
</a>
</section>
</main>
<footer></footer>
</body>
</html>