Merge branch 'master' of github.com:citra-emu/citra-web
This commit is contained in:
commit
436fc54fc0
|
@ -1,8 +1,9 @@
|
||||||
{
|
{
|
||||||
"0": { "name": "Won't Boot", "description": "The game crashes when attempting to startup." },
|
"0": { "name": "Won't Boot", "description": "The game crashes when attempting to startup." },
|
||||||
"1": { "name": "Garbage", "description": "Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen." },
|
"1": { "name": "Intro/Menu", "description": "Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen." },
|
||||||
"2": { "name": "Bronze", "description": "Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds." },
|
"2": { "name": "Bad", "description": "Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds." },
|
||||||
"3": { "name": "Silver", "description": "Game functions with minor graphical or audio glitches, but game is playable from start to finish with workarounds." },
|
"3": { "name": "Okay", "description": "Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds." },
|
||||||
"4": { "name": "Gold", "description": "Game functions with minor graphical or audio glitches, game is playable from start to finish without any workarounds needed." },
|
"4": { "name": "Great", "description": "Game functions with minor graphical or audio glitches, but game is playable from start to finish with workarounds." },
|
||||||
"5": { "name": "Platinum", "description": "Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed." }
|
"5": { "name": "Excellent", "description": "Game functions with minor graphical or audio glitches, game is playable from start to finish without any workarounds needed." },
|
||||||
|
"6": { "name": "Perfect", "description": "Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed." }
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,48 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ $paginator := .Paginate .Data.Pages }}
|
{{ $paginator := .Paginate .Data.Pages }}
|
||||||
|
<h1>Game Compatibility List</h1>
|
||||||
|
<p>The Citra Emulator compatibility list contains all the games we tested, sorted by how well they work on the emulator.</p>
|
||||||
|
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Rating</th>
|
||||||
|
<th>Description</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Perfect</td>
|
||||||
|
<td>Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without any workarounds needed.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Excellent</td>
|
||||||
|
<td>Game functions with minor graphical or audio glitches, game is playable from start to finish without any workarounds needed.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Great</td>
|
||||||
|
<td>Game functions with minor graphical or audio glitches, but game is playable from start to finish with workarounds.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Okay</td>
|
||||||
|
<td>Game functions with major graphical or audio glitches, but game is playable from start to finish with workarounds.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Bad</td>
|
||||||
|
<td>Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches even with workarounds.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Intro/Menu</td>
|
||||||
|
<td>Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start Screen.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Won't Boot</td>
|
||||||
|
<td>The game crashes when attempting to startup.</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<h2>Games</h2>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Reference in New Issue