├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── assets ├── apollo_assets_1.7z ├── apollo_assets_2.7z ├── apollo_assets_3.7z ├── apollo_assets_4.7z ├── apollo_assets_5.7z ├── bsd_apply.vb ├── bsd_read.cs ├── mc02_fixer.c └── offzip_035.c ├── data ├── bgimg.jpg ├── buk_scr.png ├── cat_about.png ├── cat_bup.png ├── cat_cheats.png ├── cat_db.png ├── cat_empty.png ├── cat_hdd.png ├── cat_opt.png ├── cat_sav.png ├── cat_usb.png ├── cat_warning.png ├── cheat.png ├── circle_error_dark.png ├── circle_error_light.png ├── circle_loading_bg.png ├── circle_loading_seek.png ├── column_1.png ├── column_2.png ├── column_3.png ├── column_4.png ├── column_5.png ├── column_6.png ├── column_7.png ├── edit_shadow.png ├── footer_ico_circle.png ├── footer_ico_cross.png ├── footer_ico_square.png ├── footer_ico_triangle.png ├── haiku.s3m ├── header_dot.png ├── header_line.png ├── help.png ├── jar_about.png ├── jar_about_hover.png ├── jar_bup.png ├── jar_bup_hover.png ├── jar_db.png ├── jar_db_hover.png ├── jar_hdd.png ├── jar_hdd_hover.png ├── jar_opt.png ├── jar_opt_hover.png ├── jar_trophy.png ├── jar_trophy_hover.png ├── jar_usb.png ├── jar_usb_hover.png ├── leon_luna.jpg ├── logo.png ├── logo_text.png ├── mark_arrow.png ├── mark_line.png ├── mark_line_nowork.png ├── opt_off.png ├── opt_on.png ├── scroll_bg.png ├── scroll_lock.png ├── spu_soundmodule.bin ├── tag_apply.png ├── tag_lock.png ├── tag_net.png ├── tag_own.png ├── tag_pce.png ├── tag_ps1.png ├── tag_ps2.png ├── tag_ps3.png ├── tag_psp.png ├── tag_psv.png ├── tag_transfer.png ├── tag_vmc.png ├── tag_warning.png └── tag_zip.png ├── docs ├── README.md ├── _EXAMPLE.savepatch ├── _config.yml ├── gamegenie.txt ├── leon.png ├── leonluna.png ├── screenshots │ ├── screenshot_about.png │ ├── screenshot_details.png │ ├── screenshot_main.png │ ├── screenshot_onlinedb.png │ ├── screenshot_patches.png │ ├── screenshot_savelist.png │ └── screenshot_settings.png └── translate.po ├── include ├── backend.h ├── common.h ├── config.h ├── ecdsa.h ├── font-10x20.h ├── font_adonais.h ├── imagefont.h ├── libfont.h ├── lzari.h ├── mcio.h ├── menu.h ├── menu_gui.h ├── pfd.h ├── pfd_internal.h ├── ps1card.h ├── ps2_data.h ├── ps2icon.h ├── ps2mc.h ├── saves.h ├── settings.h ├── sfo.h ├── shiftjis.h ├── svpng.h ├── trophy.h ├── ttf_render.h ├── types.h └── util.h ├── pkgfiles ├── ICON0.PNG ├── PIC1.PNG └── USRDIR │ └── DATA │ ├── lang_el.po │ ├── lang_es.po │ ├── lang_fr.po │ ├── lang_it.po │ ├── lang_ja.po │ ├── lang_pl.po │ ├── lang_pt.po │ ├── lang_ru.po │ └── lang_te.po ├── sfo.xml └── source ├── backend.c ├── common.c ├── config.c ├── dialog.c ├── draw.c ├── ecdsa.c ├── exec_cmd.c ├── http.c ├── libfont.c ├── lzari.c ├── main.c ├── mcio.c ├── menu_about.c ├── menu_cheats.c ├── menu_hex.c ├── menu_main.c ├── menu_options.c ├── owner_xml.c ├── pfd.c ├── pfd_util.c ├── ps1card.c ├── ps2classic.c ├── ps2icon.c ├── ps3pad.c ├── psv_ps2.c ├── psv_resign.c ├── rifrap.c ├── save_util.c ├── saves.c ├── settings.c ├── sfo.c ├── trophy.c ├── ttf_fonts.c ├── util.c └── zip_util.c /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/README.md -------------------------------------------------------------------------------- /assets/apollo_assets_1.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/apollo_assets_1.7z -------------------------------------------------------------------------------- /assets/apollo_assets_2.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/apollo_assets_2.7z -------------------------------------------------------------------------------- /assets/apollo_assets_3.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/apollo_assets_3.7z -------------------------------------------------------------------------------- /assets/apollo_assets_4.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/apollo_assets_4.7z -------------------------------------------------------------------------------- /assets/apollo_assets_5.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/apollo_assets_5.7z -------------------------------------------------------------------------------- /assets/bsd_apply.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/bsd_apply.vb -------------------------------------------------------------------------------- /assets/bsd_read.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/bsd_read.cs -------------------------------------------------------------------------------- /assets/mc02_fixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/mc02_fixer.c -------------------------------------------------------------------------------- /assets/offzip_035.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/assets/offzip_035.c -------------------------------------------------------------------------------- /data/bgimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/bgimg.jpg -------------------------------------------------------------------------------- /data/buk_scr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/buk_scr.png -------------------------------------------------------------------------------- /data/cat_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_about.png -------------------------------------------------------------------------------- /data/cat_bup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_bup.png -------------------------------------------------------------------------------- /data/cat_cheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_cheats.png -------------------------------------------------------------------------------- /data/cat_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_db.png -------------------------------------------------------------------------------- /data/cat_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_empty.png -------------------------------------------------------------------------------- /data/cat_hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_hdd.png -------------------------------------------------------------------------------- /data/cat_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_opt.png -------------------------------------------------------------------------------- /data/cat_sav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_sav.png -------------------------------------------------------------------------------- /data/cat_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_usb.png -------------------------------------------------------------------------------- /data/cat_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cat_warning.png -------------------------------------------------------------------------------- /data/cheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/cheat.png -------------------------------------------------------------------------------- /data/circle_error_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/circle_error_dark.png -------------------------------------------------------------------------------- /data/circle_error_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/circle_error_light.png -------------------------------------------------------------------------------- /data/circle_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/circle_loading_bg.png -------------------------------------------------------------------------------- /data/circle_loading_seek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/circle_loading_seek.png -------------------------------------------------------------------------------- /data/column_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_1.png -------------------------------------------------------------------------------- /data/column_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_2.png -------------------------------------------------------------------------------- /data/column_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_3.png -------------------------------------------------------------------------------- /data/column_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_4.png -------------------------------------------------------------------------------- /data/column_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_5.png -------------------------------------------------------------------------------- /data/column_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_6.png -------------------------------------------------------------------------------- /data/column_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/column_7.png -------------------------------------------------------------------------------- /data/edit_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/edit_shadow.png -------------------------------------------------------------------------------- /data/footer_ico_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/footer_ico_circle.png -------------------------------------------------------------------------------- /data/footer_ico_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/footer_ico_cross.png -------------------------------------------------------------------------------- /data/footer_ico_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/footer_ico_square.png -------------------------------------------------------------------------------- /data/footer_ico_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/footer_ico_triangle.png -------------------------------------------------------------------------------- /data/haiku.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/haiku.s3m -------------------------------------------------------------------------------- /data/header_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/header_dot.png -------------------------------------------------------------------------------- /data/header_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/header_line.png -------------------------------------------------------------------------------- /data/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/help.png -------------------------------------------------------------------------------- /data/jar_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_about.png -------------------------------------------------------------------------------- /data/jar_about_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_about_hover.png -------------------------------------------------------------------------------- /data/jar_bup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_bup.png -------------------------------------------------------------------------------- /data/jar_bup_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_bup_hover.png -------------------------------------------------------------------------------- /data/jar_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_db.png -------------------------------------------------------------------------------- /data/jar_db_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_db_hover.png -------------------------------------------------------------------------------- /data/jar_hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_hdd.png -------------------------------------------------------------------------------- /data/jar_hdd_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_hdd_hover.png -------------------------------------------------------------------------------- /data/jar_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_opt.png -------------------------------------------------------------------------------- /data/jar_opt_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_opt_hover.png -------------------------------------------------------------------------------- /data/jar_trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_trophy.png -------------------------------------------------------------------------------- /data/jar_trophy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_trophy_hover.png -------------------------------------------------------------------------------- /data/jar_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_usb.png -------------------------------------------------------------------------------- /data/jar_usb_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/jar_usb_hover.png -------------------------------------------------------------------------------- /data/leon_luna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/leon_luna.jpg -------------------------------------------------------------------------------- /data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/logo.png -------------------------------------------------------------------------------- /data/logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/logo_text.png -------------------------------------------------------------------------------- /data/mark_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/mark_arrow.png -------------------------------------------------------------------------------- /data/mark_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/mark_line.png -------------------------------------------------------------------------------- /data/mark_line_nowork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/mark_line_nowork.png -------------------------------------------------------------------------------- /data/opt_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/opt_off.png -------------------------------------------------------------------------------- /data/opt_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/opt_on.png -------------------------------------------------------------------------------- /data/scroll_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/scroll_bg.png -------------------------------------------------------------------------------- /data/scroll_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/scroll_lock.png -------------------------------------------------------------------------------- /data/spu_soundmodule.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/spu_soundmodule.bin -------------------------------------------------------------------------------- /data/tag_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_apply.png -------------------------------------------------------------------------------- /data/tag_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_lock.png -------------------------------------------------------------------------------- /data/tag_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_net.png -------------------------------------------------------------------------------- /data/tag_own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_own.png -------------------------------------------------------------------------------- /data/tag_pce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_pce.png -------------------------------------------------------------------------------- /data/tag_ps1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_ps1.png -------------------------------------------------------------------------------- /data/tag_ps2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_ps2.png -------------------------------------------------------------------------------- /data/tag_ps3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_ps3.png -------------------------------------------------------------------------------- /data/tag_psp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_psp.png -------------------------------------------------------------------------------- /data/tag_psv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_psv.png -------------------------------------------------------------------------------- /data/tag_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_transfer.png -------------------------------------------------------------------------------- /data/tag_vmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_vmc.png -------------------------------------------------------------------------------- /data/tag_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_warning.png -------------------------------------------------------------------------------- /data/tag_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/data/tag_zip.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_EXAMPLE.savepatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/_EXAMPLE.savepatch -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/gamegenie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/gamegenie.txt -------------------------------------------------------------------------------- /docs/leon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/leon.png -------------------------------------------------------------------------------- /docs/leonluna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/leonluna.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_about.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_details.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_main.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_onlinedb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_onlinedb.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_patches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_patches.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_savelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_savelist.png -------------------------------------------------------------------------------- /docs/screenshots/screenshot_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/screenshots/screenshot_settings.png -------------------------------------------------------------------------------- /docs/translate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/docs/translate.po -------------------------------------------------------------------------------- /include/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/backend.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/config.h -------------------------------------------------------------------------------- /include/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/ecdsa.h -------------------------------------------------------------------------------- /include/font-10x20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/font-10x20.h -------------------------------------------------------------------------------- /include/font_adonais.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/font_adonais.h -------------------------------------------------------------------------------- /include/imagefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/imagefont.h -------------------------------------------------------------------------------- /include/libfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/libfont.h -------------------------------------------------------------------------------- /include/lzari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/lzari.h -------------------------------------------------------------------------------- /include/mcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/mcio.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/menu_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/menu_gui.h -------------------------------------------------------------------------------- /include/pfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/pfd.h -------------------------------------------------------------------------------- /include/pfd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/pfd_internal.h -------------------------------------------------------------------------------- /include/ps1card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/ps1card.h -------------------------------------------------------------------------------- /include/ps2_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/ps2_data.h -------------------------------------------------------------------------------- /include/ps2icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/ps2icon.h -------------------------------------------------------------------------------- /include/ps2mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/ps2mc.h -------------------------------------------------------------------------------- /include/saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/saves.h -------------------------------------------------------------------------------- /include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/settings.h -------------------------------------------------------------------------------- /include/sfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/sfo.h -------------------------------------------------------------------------------- /include/shiftjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/shiftjis.h -------------------------------------------------------------------------------- /include/svpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/svpng.h -------------------------------------------------------------------------------- /include/trophy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/trophy.h -------------------------------------------------------------------------------- /include/ttf_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/ttf_render.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/types.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/include/util.h -------------------------------------------------------------------------------- /pkgfiles/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/ICON0.PNG -------------------------------------------------------------------------------- /pkgfiles/PIC1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/PIC1.PNG -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_el.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_es.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_fr.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_it.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_ja.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_pl.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_pt.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_ru.po -------------------------------------------------------------------------------- /pkgfiles/USRDIR/DATA/lang_te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/pkgfiles/USRDIR/DATA/lang_te.po -------------------------------------------------------------------------------- /sfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/sfo.xml -------------------------------------------------------------------------------- /source/backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/backend.c -------------------------------------------------------------------------------- /source/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/common.c -------------------------------------------------------------------------------- /source/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/config.c -------------------------------------------------------------------------------- /source/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/dialog.c -------------------------------------------------------------------------------- /source/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/draw.c -------------------------------------------------------------------------------- /source/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/ecdsa.c -------------------------------------------------------------------------------- /source/exec_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/exec_cmd.c -------------------------------------------------------------------------------- /source/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/http.c -------------------------------------------------------------------------------- /source/libfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/libfont.c -------------------------------------------------------------------------------- /source/lzari.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/lzari.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/main.c -------------------------------------------------------------------------------- /source/mcio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/mcio.c -------------------------------------------------------------------------------- /source/menu_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/menu_about.c -------------------------------------------------------------------------------- /source/menu_cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/menu_cheats.c -------------------------------------------------------------------------------- /source/menu_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/menu_hex.c -------------------------------------------------------------------------------- /source/menu_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/menu_main.c -------------------------------------------------------------------------------- /source/menu_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/menu_options.c -------------------------------------------------------------------------------- /source/owner_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/owner_xml.c -------------------------------------------------------------------------------- /source/pfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/pfd.c -------------------------------------------------------------------------------- /source/pfd_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/pfd_util.c -------------------------------------------------------------------------------- /source/ps1card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/ps1card.c -------------------------------------------------------------------------------- /source/ps2classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/ps2classic.c -------------------------------------------------------------------------------- /source/ps2icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/ps2icon.c -------------------------------------------------------------------------------- /source/ps3pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/ps3pad.c -------------------------------------------------------------------------------- /source/psv_ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/psv_ps2.c -------------------------------------------------------------------------------- /source/psv_resign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/psv_resign.c -------------------------------------------------------------------------------- /source/rifrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/rifrap.c -------------------------------------------------------------------------------- /source/save_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/save_util.c -------------------------------------------------------------------------------- /source/saves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/saves.c -------------------------------------------------------------------------------- /source/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/settings.c -------------------------------------------------------------------------------- /source/sfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/sfo.c -------------------------------------------------------------------------------- /source/trophy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/trophy.c -------------------------------------------------------------------------------- /source/ttf_fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/ttf_fonts.c -------------------------------------------------------------------------------- /source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/util.c -------------------------------------------------------------------------------- /source/zip_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucanero/apollo-ps3/HEAD/source/zip_util.c --------------------------------------------------------------------------------