Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/retroarch-clover.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-22 07:15:26 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-22 07:15:41 +0300
commitd9ff45d3f36368f4c8d257f165875328cedb1131 (patch)
tree0cdf8d9eb0fb7911bff1b6f620d8d47501e9a239 /makehmod.sh
parentf5d8632b2de668d16faa2ad8b7d3f1a98d045748 (diff)
Original FDS games on Famicom Mini were broken, fixed.
Diffstat (limited to 'makehmod.sh')
-rw-r--r--makehmod.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/makehmod.sh b/makehmod.sh
new file mode 100644
index 0000000..22724ba
--- /dev/null
+++ b/makehmod.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+moddir=retroarch.hmod
+modname=retroarch.hmod
+outdir=output
+[ -z "$1" ] || outdir=$1
+cd "$moddir"
+rm -f "$modname"
+tar -czvf "$modname" *
+mkdir -p "../$outdir"
+rm -f "../$outdir/$modname"
+mv "$modname" "../$outdir/$modname"