├── .gitignore ├── LICENCE ├── Makefile ├── README.md ├── executables ├── psx-combine_v5.2.2_32bit.exe └── psx-combine_v5.2.2_64bit.exe ├── images ├── UI.jpg └── psx-comBINe.jpg ├── include ├── clampp.hpp ├── cuehandler.hpp └── utils.hpp └── src ├── clampp.cpp ├── cuehandler.cpp ├── main.cpp └── utils.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/README.md -------------------------------------------------------------------------------- /executables/psx-combine_v5.2.2_32bit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/executables/psx-combine_v5.2.2_32bit.exe -------------------------------------------------------------------------------- /executables/psx-combine_v5.2.2_64bit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/executables/psx-combine_v5.2.2_64bit.exe -------------------------------------------------------------------------------- /images/UI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/images/UI.jpg -------------------------------------------------------------------------------- /images/psx-comBINe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/images/psx-comBINe.jpg -------------------------------------------------------------------------------- /include/clampp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/include/clampp.hpp -------------------------------------------------------------------------------- /include/cuehandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/include/cuehandler.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /src/clampp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/src/clampp.cpp -------------------------------------------------------------------------------- /src/cuehandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/src/cuehandler.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADBeta/psx-comBINe/HEAD/src/utils.cpp --------------------------------------------------------------------------------