Skip to content

Commit

Permalink
Fixed C8 error on some cores
Browse files Browse the repository at this point in the history
  • Loading branch information
ClusterM committed Mar 20, 2018
1 parent 5567751 commit 278b7b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions retroarch.hmod/bin/retroarch-clover-child
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,8 @@ kill -KILL $power_pid 2> /dev/null
[ ! -z "$anybutton1_pid" ] && kill -KILL $anybutton1_pid 2> /dev/null
[ ! -z "$anybutton2_pid" ] && kill -KILL $anybutton2_pid 2> /dev/null

if [ ! -z "$sshot_pid" ]; then
wait $sshot_pid
else
wait $rpid
fi
[ ! -z "$sshot_pid" ] && wait $sshot_pid
wait $rpid

[ ! -z "$save" ] && mkdir -p $(dirname "$save")
[ ! -z "$sram" ] && mkdir -p $(dirname "$sram")
Expand Down
2 changes: 1 addition & 1 deletion retroarch.hmod/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
=== RetroArch module for hakchi ===
version 1.1c
version 1.1d

This is a hakchi/hakchi2 module which adds libretro cores and RetroArch frontend to your NES/SNES Mini.

Expand Down

0 comments on commit 278b7b4

Please sign in to comment.