Add flashgbx note

This commit is contained in:
Evan
2022-06-11 15:12:17 -04:00
parent 2fbabc718b
commit e36e98ca55
2 changed files with 5 additions and 0 deletions

View File

@@ -188,6 +188,7 @@
<a class='download-link' :download="filename + '.gb'" :href="downloadEnabled ? romData : null" type="application/octet-stream" v-on:click="downloadRomFile" :class="{ disabled: !downloadEnabled }">Download ROM File ({{filename}}.gb)</a>
<br>
<a class='download-link' v-if="mapEnabled" :download="filename + '.map'" :href="downloadEnabled ? mapData : null" type="application/octet-stream" v-on:click="downloadMapFile" :class="{ disabled: !downloadEnabled }">Download MAP File ({{filename}}.map)</a>
<p v-if="mapEnabled" class="map-note"><span></span><span>Note: If you are using FlashGBX, you do not need the MAP file<span></p>
<div v-if="singleRomMapEnabled" class="single-rom-download">
<div>If you want to flash {{singleRomFilename}} without the menu, you can use this MAP file to configure the cart to work with your ROM.</div>

View File

@@ -247,3 +247,7 @@ noscript {
.ticker-settings {
margin-top: 0.4rem;
}
.map-note { margin-left: 0.5rem; }
.map-note span:first-child { font-size: 1.2rem; }
.map-note span:last-child { vertical-align: sub; }