├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md └── src ├── config.cpp ├── config.h ├── forwarder_patches.cpp ├── globals.cpp ├── globals.hpp ├── logger.c ├── logger.h ├── main.cpp ├── main.h ├── mocha.cpp ├── mocha.h ├── notifications.cpp ├── notifications.h ├── sysconf_preserver.cpp └── sysconf_preserver.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | build/ 3 | *.elf 4 | *.wps 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/README.md -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/config.h -------------------------------------------------------------------------------- /src/forwarder_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/forwarder_patches.cpp -------------------------------------------------------------------------------- /src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/globals.cpp -------------------------------------------------------------------------------- /src/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/globals.hpp -------------------------------------------------------------------------------- /src/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/logger.c -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mocha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/mocha.cpp -------------------------------------------------------------------------------- /src/mocha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/mocha.h -------------------------------------------------------------------------------- /src/notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/notifications.cpp -------------------------------------------------------------------------------- /src/notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/notifications.h -------------------------------------------------------------------------------- /src/sysconf_preserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/sysconf_preserver.cpp -------------------------------------------------------------------------------- /src/sysconf_preserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lynx64/WiiVCLaunch/HEAD/src/sysconf_preserver.h --------------------------------------------------------------------------------