32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!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> |