├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── config └── main.cpp ├── data └── cursor.png ├── loader ├── config.h ├── elf.h ├── input.c ├── input.h ├── main.c ├── main.h ├── reimpl │ ├── other.c │ ├── other.h │ ├── pthr.c │ └── pthr.h ├── so_util.c ├── so_util.h └── utils │ ├── dialog.c │ ├── dialog.h │ ├── gxm_dialog.c │ ├── gxm_dialog.h │ ├── sfp2hfp.h │ ├── trophies.c │ ├── trophies.h │ ├── utils.c │ └── utils.h ├── module ├── libGLESv2.suprx ├── libIMGEGL.suprx ├── libgpu_es4_ext.suprx ├── libgpu_es4_kernel_ext.skprx └── libpvrPSP2_WSEGL.suprx ├── sce_sys ├── icon0.png ├── livearea │ └── contents │ │ ├── bg0.png │ │ ├── startup.png │ │ └── template.xml ├── pic0.png └── trophy │ └── HOMM00003_00 │ └── TROPHY.TRP └── screenshots └── city.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | .vscode -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/README.md -------------------------------------------------------------------------------- /config/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/config/main.cpp -------------------------------------------------------------------------------- /data/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/data/cursor.png -------------------------------------------------------------------------------- /loader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/config.h -------------------------------------------------------------------------------- /loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/elf.h -------------------------------------------------------------------------------- /loader/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/input.c -------------------------------------------------------------------------------- /loader/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/input.h -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/main.h -------------------------------------------------------------------------------- /loader/reimpl/other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/reimpl/other.c -------------------------------------------------------------------------------- /loader/reimpl/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/reimpl/other.h -------------------------------------------------------------------------------- /loader/reimpl/pthr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/reimpl/pthr.c -------------------------------------------------------------------------------- /loader/reimpl/pthr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/reimpl/pthr.h -------------------------------------------------------------------------------- /loader/so_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/so_util.c -------------------------------------------------------------------------------- /loader/so_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/so_util.h -------------------------------------------------------------------------------- /loader/utils/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/dialog.c -------------------------------------------------------------------------------- /loader/utils/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/dialog.h -------------------------------------------------------------------------------- /loader/utils/gxm_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/gxm_dialog.c -------------------------------------------------------------------------------- /loader/utils/gxm_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/gxm_dialog.h -------------------------------------------------------------------------------- /loader/utils/sfp2hfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/sfp2hfp.h -------------------------------------------------------------------------------- /loader/utils/trophies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/trophies.c -------------------------------------------------------------------------------- /loader/utils/trophies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/trophies.h -------------------------------------------------------------------------------- /loader/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/utils.c -------------------------------------------------------------------------------- /loader/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/loader/utils/utils.h -------------------------------------------------------------------------------- /module/libGLESv2.suprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/module/libGLESv2.suprx -------------------------------------------------------------------------------- /module/libIMGEGL.suprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/module/libIMGEGL.suprx -------------------------------------------------------------------------------- /module/libgpu_es4_ext.suprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/module/libgpu_es4_ext.suprx -------------------------------------------------------------------------------- /module/libgpu_es4_kernel_ext.skprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/module/libgpu_es4_kernel_ext.skprx -------------------------------------------------------------------------------- /module/libpvrPSP2_WSEGL.suprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/module/libpvrPSP2_WSEGL.suprx -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/sce_sys/livearea/contents/bg0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /sce_sys/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/sce_sys/pic0.png -------------------------------------------------------------------------------- /sce_sys/trophy/HOMM00003_00/TROPHY.TRP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/sce_sys/trophy/HOMM00003_00/TROPHY.TRP -------------------------------------------------------------------------------- /screenshots/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Northfear/homm3hd-vita/HEAD/screenshots/city.png --------------------------------------------------------------------------------