├── LICENSE ├── README.md ├── backends ├── README.md ├── actionreplay.c ├── actionreplay.h ├── backend.c ├── backend.h ├── cd.c ├── cd.h ├── mode.c ├── mode.h ├── mode │ ├── mode_intf.a │ └── mode_intf.h ├── sat.c ├── sat.h ├── satiator.c ├── satiator.h ├── satiator │ ├── cd.c │ ├── cd.h │ ├── satiator-types.h │ ├── satiator.c │ └── satiator.h ├── saturn.c └── saturn.h ├── bup_header.c ├── bup_header.h ├── cd ├── ABS.TXT ├── BIB.TXT ├── CPY.TXT └── SATSAVES │ ├── BIOUDAT2.BUP │ ├── BIOUDATA.BUP │ ├── B_GAREGG.BUP │ ├── CREDITS.TXT │ ├── DAYTONA_.BUP │ ├── DRACUL01.BUP │ ├── DRACUL02.BUP │ ├── DRACULAX.BUP │ ├── DR_FORCE.BUP │ ├── FALC2COM.BUP │ ├── FALC2Y20.BUP │ ├── FALC2Y21.BUP │ ├── FALC2Y22.BUP │ ├── FANTASYZ.BUP │ ├── FIGHTERS.BUP │ ├── GOIKE001.BUP │ ├── GOIKEDAT.BUP │ ├── GUARDIAN.BUP │ ├── HARRIE01.BUP │ ├── HOUSEOFD.BUP │ ├── KEIO2___.BUP │ ├── LANGRIS5.BUP │ ├── NIGHTS02.BUP │ ├── OUTRUN01.BUP │ ├── POCKET_F.BUP │ ├── PZL_F_TU.BUP │ ├── QUTENKAI.BUP │ ├── RADIANT_.BUP │ ├── SALAMAND.BUP │ ├── SBOMBERM.BUP │ ├── SEGARALL.BUP │ ├── SENGOKU_.BUP │ ├── SFORCE31.BUP │ ├── SFZER001.BUP │ ├── SFZER002.BUP │ ├── SF_ALPH1.BUP │ ├── SF_ALPHA.BUP │ ├── SF_COL02.BUP │ ├── SF_COL03.BUP │ ├── SONICR__.BUP │ ├── SOQGUREN.BUP │ ├── TAMAGOTC.BUP │ ├── TENCHIRE.BUP │ ├── ZENNIC01.BUP │ └── ZENNIC02.BUP ├── clean.bat ├── clean.sh ├── compile.bat ├── compile.sh ├── game_cue_for_mode.cue ├── main.c ├── main.h ├── makefile ├── md5 ├── md5.c └── md5.h ├── run_with_daemon_tools_and_ssf.bat ├── run_with_mednafen.bat ├── run_with_nova.bat ├── run_with_powershell_and_ssf.ps1 ├── run_with_virtual_clone_drive_and_ssf.bat ├── run_with_yabaSanshiro.bat ├── run_with_yabause.bat ├── run_with_yabause.sh ├── screenshots ├── cd.png ├── copy.png ├── dump.png ├── main.png ├── mode.png ├── satiator.png └── saves.png ├── util.c └── util.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/README.md -------------------------------------------------------------------------------- /backends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/README.md -------------------------------------------------------------------------------- /backends/actionreplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/actionreplay.c -------------------------------------------------------------------------------- /backends/actionreplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/actionreplay.h -------------------------------------------------------------------------------- /backends/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/backend.c -------------------------------------------------------------------------------- /backends/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/backend.h -------------------------------------------------------------------------------- /backends/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/cd.c -------------------------------------------------------------------------------- /backends/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/cd.h -------------------------------------------------------------------------------- /backends/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/mode.c -------------------------------------------------------------------------------- /backends/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/mode.h -------------------------------------------------------------------------------- /backends/mode/mode_intf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/mode/mode_intf.a -------------------------------------------------------------------------------- /backends/mode/mode_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/mode/mode_intf.h -------------------------------------------------------------------------------- /backends/sat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/sat.c -------------------------------------------------------------------------------- /backends/sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/sat.h -------------------------------------------------------------------------------- /backends/satiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator.c -------------------------------------------------------------------------------- /backends/satiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator.h -------------------------------------------------------------------------------- /backends/satiator/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator/cd.c -------------------------------------------------------------------------------- /backends/satiator/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator/cd.h -------------------------------------------------------------------------------- /backends/satiator/satiator-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator/satiator-types.h -------------------------------------------------------------------------------- /backends/satiator/satiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator/satiator.c -------------------------------------------------------------------------------- /backends/satiator/satiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/satiator/satiator.h -------------------------------------------------------------------------------- /backends/saturn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/saturn.c -------------------------------------------------------------------------------- /backends/saturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/backends/saturn.h -------------------------------------------------------------------------------- /bup_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/bup_header.c -------------------------------------------------------------------------------- /bup_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/bup_header.h -------------------------------------------------------------------------------- /cd/ABS.TXT: -------------------------------------------------------------------------------- 1 | NOT Abstracted by SEGA 2 | 3 | -------------------------------------------------------------------------------- /cd/BIB.TXT: -------------------------------------------------------------------------------- 1 | NOT Bibliographiced by SEGA 2 | 3 | -------------------------------------------------------------------------------- /cd/CPY.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /cd/SATSAVES/BIOUDAT2.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/BIOUDAT2.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/BIOUDATA.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/BIOUDATA.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/B_GAREGG.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/B_GAREGG.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/CREDITS.TXT -------------------------------------------------------------------------------- /cd/SATSAVES/DAYTONA_.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/DAYTONA_.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/DRACUL01.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/DRACUL01.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/DRACUL02.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/DRACUL02.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/DRACULAX.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/DRACULAX.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/DR_FORCE.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/DR_FORCE.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/FALC2COM.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/FALC2COM.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/FALC2Y20.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/FALC2Y20.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/FALC2Y21.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/FALC2Y21.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/FALC2Y22.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/FALC2Y22.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/FANTASYZ.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/FANTASYZ.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/FIGHTERS.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/FIGHTERS.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/GOIKE001.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/GOIKE001.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/GOIKEDAT.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/GOIKEDAT.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/GUARDIAN.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/GUARDIAN.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/HARRIE01.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/HARRIE01.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/HOUSEOFD.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/HOUSEOFD.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/KEIO2___.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/KEIO2___.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/LANGRIS5.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/LANGRIS5.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/NIGHTS02.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/NIGHTS02.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/OUTRUN01.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/OUTRUN01.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/POCKET_F.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/POCKET_F.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/PZL_F_TU.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/PZL_F_TU.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/QUTENKAI.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/QUTENKAI.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/RADIANT_.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/RADIANT_.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SALAMAND.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SALAMAND.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SBOMBERM.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SBOMBERM.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SEGARALL.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SEGARALL.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SENGOKU_.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SENGOKU_.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SFORCE31.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SFORCE31.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SFZER001.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SFZER001.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SFZER002.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SFZER002.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SF_ALPH1.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SF_ALPH1.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SF_ALPHA.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SF_ALPHA.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SF_COL02.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SF_COL02.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SF_COL03.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SF_COL03.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SONICR__.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SONICR__.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/SOQGUREN.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/SOQGUREN.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/TAMAGOTC.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/TAMAGOTC.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/TENCHIRE.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/TENCHIRE.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/ZENNIC01.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/ZENNIC01.BUP -------------------------------------------------------------------------------- /cd/SATSAVES/ZENNIC02.BUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/cd/SATSAVES/ZENNIC02.BUP -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/clean.bat -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/clean.sh -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/compile.bat -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/compile.sh -------------------------------------------------------------------------------- /game_cue_for_mode.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/game_cue_for_mode.cue -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/main.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/makefile -------------------------------------------------------------------------------- /md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/md5/md5.c -------------------------------------------------------------------------------- /md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/md5/md5.h -------------------------------------------------------------------------------- /run_with_daemon_tools_and_ssf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_daemon_tools_and_ssf.bat -------------------------------------------------------------------------------- /run_with_mednafen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_mednafen.bat -------------------------------------------------------------------------------- /run_with_nova.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_nova.bat -------------------------------------------------------------------------------- /run_with_powershell_and_ssf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_powershell_and_ssf.ps1 -------------------------------------------------------------------------------- /run_with_virtual_clone_drive_and_ssf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_virtual_clone_drive_and_ssf.bat -------------------------------------------------------------------------------- /run_with_yabaSanshiro.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_yabaSanshiro.bat -------------------------------------------------------------------------------- /run_with_yabause.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_yabause.bat -------------------------------------------------------------------------------- /run_with_yabause.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/run_with_yabause.sh -------------------------------------------------------------------------------- /screenshots/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/cd.png -------------------------------------------------------------------------------- /screenshots/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/copy.png -------------------------------------------------------------------------------- /screenshots/dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/dump.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/main.png -------------------------------------------------------------------------------- /screenshots/mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/mode.png -------------------------------------------------------------------------------- /screenshots/satiator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/satiator.png -------------------------------------------------------------------------------- /screenshots/saves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/screenshots/saves.png -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slinga-homebrew/Save-Game-Copier/HEAD/util.h --------------------------------------------------------------------------------