├── .gitignore ├── CHEATS.md ├── CMakeLists.txt ├── COOP.md ├── LICENSE ├── MUSIC.md ├── README.md ├── companion └── main.cpp ├── gamefiles ├── config.txt ├── controls.txt ├── data │ ├── maps │ │ └── leveldes │ │ │ └── seabed.ipl │ └── timecyc.dat └── x360_controls.txt ├── libc_bridge ├── Makefile └── nids.yml ├── loader ├── config.c ├── config.h ├── dialog.c ├── dialog.h ├── elf.h ├── fios.c ├── fios.h ├── gfx_patch.c ├── gfx_patch.h ├── jni_patch.c ├── jni_patch.h ├── libc_bridge.h ├── main.c ├── main.h ├── mpg123_patch.c ├── mpg123_patch.h ├── openal_patch.c ├── openal_patch.h ├── opengl_patch.c ├── opengl_patch.h ├── scripts_patch.c ├── scripts_patch.h ├── so_util.c └── so_util.h ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── config.png │ ├── startup.png │ └── template.xml ├── screenshots ├── game.png ├── layout.png ├── livearea.png ├── livearea_configuration.png └── main.png └── scripts └── ffmpeg_convert_gtasa.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/.gitignore -------------------------------------------------------------------------------- /CHEATS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/CHEATS.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/COOP.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/LICENSE -------------------------------------------------------------------------------- /MUSIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/MUSIC.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/README.md -------------------------------------------------------------------------------- /companion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/companion/main.cpp -------------------------------------------------------------------------------- /gamefiles/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/gamefiles/config.txt -------------------------------------------------------------------------------- /gamefiles/controls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/gamefiles/controls.txt -------------------------------------------------------------------------------- /gamefiles/data/maps/leveldes/seabed.ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/gamefiles/data/maps/leveldes/seabed.ipl -------------------------------------------------------------------------------- /gamefiles/data/timecyc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/gamefiles/data/timecyc.dat -------------------------------------------------------------------------------- /gamefiles/x360_controls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/gamefiles/x360_controls.txt -------------------------------------------------------------------------------- /libc_bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/libc_bridge/Makefile -------------------------------------------------------------------------------- /libc_bridge/nids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/libc_bridge/nids.yml -------------------------------------------------------------------------------- /loader/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/config.c -------------------------------------------------------------------------------- /loader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/config.h -------------------------------------------------------------------------------- /loader/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/dialog.c -------------------------------------------------------------------------------- /loader/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/dialog.h -------------------------------------------------------------------------------- /loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/elf.h -------------------------------------------------------------------------------- /loader/fios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/fios.c -------------------------------------------------------------------------------- /loader/fios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/fios.h -------------------------------------------------------------------------------- /loader/gfx_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/gfx_patch.c -------------------------------------------------------------------------------- /loader/gfx_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/gfx_patch.h -------------------------------------------------------------------------------- /loader/jni_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/jni_patch.c -------------------------------------------------------------------------------- /loader/jni_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/jni_patch.h -------------------------------------------------------------------------------- /loader/libc_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/libc_bridge.h -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/main.h -------------------------------------------------------------------------------- /loader/mpg123_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/mpg123_patch.c -------------------------------------------------------------------------------- /loader/mpg123_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/mpg123_patch.h -------------------------------------------------------------------------------- /loader/openal_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/openal_patch.c -------------------------------------------------------------------------------- /loader/openal_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/openal_patch.h -------------------------------------------------------------------------------- /loader/opengl_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/opengl_patch.c -------------------------------------------------------------------------------- /loader/opengl_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/opengl_patch.h -------------------------------------------------------------------------------- /loader/scripts_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/scripts_patch.c -------------------------------------------------------------------------------- /loader/scripts_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/scripts_patch.h -------------------------------------------------------------------------------- /loader/so_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/so_util.c -------------------------------------------------------------------------------- /loader/so_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/loader/so_util.h -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/sce_sys/livearea/contents/config.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /screenshots/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/screenshots/game.png -------------------------------------------------------------------------------- /screenshots/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/screenshots/layout.png -------------------------------------------------------------------------------- /screenshots/livearea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/screenshots/livearea.png -------------------------------------------------------------------------------- /screenshots/livearea_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/screenshots/livearea_configuration.png -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/screenshots/main.png -------------------------------------------------------------------------------- /scripts/ffmpeg_convert_gtasa.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/gtasa_vita/HEAD/scripts/ffmpeg_convert_gtasa.bat --------------------------------------------------------------------------------