1
0
Fork 0
mirror of https://github.com/marcrobledo/RomPatcher.js.git synced 2025-07-27 16:48:31 +00:00

added SNES header removal option before patching

This commit is contained in:
Marc Robledo 2017-11-12 16:29:14 +01:00
parent c54fe27006
commit 14cae45bf9
6 changed files with 71 additions and 26 deletions

View file

@ -43,7 +43,17 @@
<div class="six columns text-right"><label for="input-file-rom">ROM file:</label></div>
<div class="six columns">
<input type="file" id="input-file-rom" />
<div id="rom-info" class="mono" style="font-size:12px"></div>
<div id="rom-info" class="mono" style="display:none;font-size:12px">
CRC32: <span id="crc32"></span><br/>
MD5: <span id="md5"></span><br/>
SHA-1: <span id="sha1"></span><br/>
</div>
</div>
</div>
<div class="row" id="row-removeheader" style="display:none">
<div class="six columns text-right"><label for="checkbox-removeheader">Remove header:</label></div>
<div class="six columns">
<input type="checkbox" id="checkbox-removeheader" />
</div>
</div>