├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── gitrev.sh ├── main.cpp ├── meta ├── icon.png └── meta.xml ├── sdcafiine.cbp └── src ├── common ├── common.h ├── retain_vars.cpp └── retain_vars.h ├── entry.c ├── link.ld ├── main.cpp ├── main.h ├── modpackSelector.cpp ├── modpackSelector.h ├── myfs ├── fs_utils.cpp └── fs_utils.h ├── myutils ├── libfat.cpp ├── libfat.h ├── libntfs.cpp ├── libntfs.h ├── mocha.cpp └── mocha.h ├── patcher ├── fs_function_patcher.cpp └── fs_function_patcher.h └── version.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/README.md -------------------------------------------------------------------------------- /gitrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/gitrev.sh -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/main.cpp -------------------------------------------------------------------------------- /meta/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/meta/icon.png -------------------------------------------------------------------------------- /meta/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/meta/meta.xml -------------------------------------------------------------------------------- /sdcafiine.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/sdcafiine.cbp -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/retain_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/common/retain_vars.cpp -------------------------------------------------------------------------------- /src/common/retain_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/common/retain_vars.h -------------------------------------------------------------------------------- /src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/entry.c -------------------------------------------------------------------------------- /src/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/link.ld -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/main.h -------------------------------------------------------------------------------- /src/modpackSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/modpackSelector.cpp -------------------------------------------------------------------------------- /src/modpackSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/modpackSelector.h -------------------------------------------------------------------------------- /src/myfs/fs_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myfs/fs_utils.cpp -------------------------------------------------------------------------------- /src/myfs/fs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myfs/fs_utils.h -------------------------------------------------------------------------------- /src/myutils/libfat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myutils/libfat.cpp -------------------------------------------------------------------------------- /src/myutils/libfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myutils/libfat.h -------------------------------------------------------------------------------- /src/myutils/libntfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myutils/libntfs.cpp -------------------------------------------------------------------------------- /src/myutils/libntfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myutils/libntfs.h -------------------------------------------------------------------------------- /src/myutils/mocha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myutils/mocha.cpp -------------------------------------------------------------------------------- /src/myutils/mocha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/myutils/mocha.h -------------------------------------------------------------------------------- /src/patcher/fs_function_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/patcher/fs_function_patcher.cpp -------------------------------------------------------------------------------- /src/patcher/fs_function_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maschell/SDCafiine/HEAD/src/patcher/fs_function_patcher.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | #define APP_VERSION "v1.4" --------------------------------------------------------------------------------