├── LICENSE ├── Makefile ├── README.md ├── config.mk ├── include ├── anim.h ├── get_path.h ├── patch.h ├── prefs.h ├── sync.h └── video.h ├── sh3proxy.ini └── src ├── anim.c ├── anim_trampl.S ├── fov.S ├── get_path.c ├── main.c ├── patch.c ├── shadows.S ├── sync.c ├── sync_trampl.S ├── video.c └── video_init.S /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/README.md -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/config.mk -------------------------------------------------------------------------------- /include/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/include/anim.h -------------------------------------------------------------------------------- /include/get_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/include/get_path.h -------------------------------------------------------------------------------- /include/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/include/patch.h -------------------------------------------------------------------------------- /include/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/include/prefs.h -------------------------------------------------------------------------------- /include/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/include/sync.h -------------------------------------------------------------------------------- /include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/include/video.h -------------------------------------------------------------------------------- /sh3proxy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/sh3proxy.ini -------------------------------------------------------------------------------- /src/anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/anim.c -------------------------------------------------------------------------------- /src/anim_trampl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/anim_trampl.S -------------------------------------------------------------------------------- /src/fov.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/fov.S -------------------------------------------------------------------------------- /src/get_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/get_path.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/main.c -------------------------------------------------------------------------------- /src/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/patch.c -------------------------------------------------------------------------------- /src/shadows.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/shadows.S -------------------------------------------------------------------------------- /src/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/sync.c -------------------------------------------------------------------------------- /src/sync_trampl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/sync_trampl.S -------------------------------------------------------------------------------- /src/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/video.c -------------------------------------------------------------------------------- /src/video_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07151129/sh3proxy/HEAD/src/video_init.S --------------------------------------------------------------------------------