mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-22 04:39:17 +01:00
Add support for WUPS 0.8.1
This commit is contained in:
parent
2047d5725b
commit
f9b67d57ea
@ -1,7 +1,7 @@
|
|||||||
FROM ghcr.io/wiiu-env/devkitppc:20240423
|
FROM ghcr.io/wiiu-env/devkitppc:20240505
|
||||||
|
|
||||||
COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20240424 /artifacts $DEVKITPRO
|
COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20240424 /artifacts $DEVKITPRO
|
||||||
COPY --from=ghcr.io/wiiu-env/wiiupluginsystem:20240425 /artifacts $DEVKITPRO
|
COPY --from=ghcr.io/wiiu-env/wiiupluginsystem:20240505 /artifacts $DEVKITPRO
|
||||||
COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230621 /artifacts $DEVKITPRO
|
COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230621 /artifacts $DEVKITPRO
|
||||||
COPY --from=ghcr.io/wiiu-env/libmappedmemory:20230621 /artifacts $DEVKITPRO
|
COPY --from=ghcr.io/wiiu-env/libmappedmemory:20230621 /artifacts $DEVKITPRO
|
||||||
COPY --from=ghcr.io/wiiu-env/libwupsbackend:20240425 /artifacts $DEVKITPRO
|
COPY --from=ghcr.io/wiiu-env/libwupsbackend:20240425 /artifacts $DEVKITPRO
|
||||||
|
@ -107,8 +107,8 @@ std::optional<PluginMetaInformation> PluginMetaInformationFactory::loadPlugin(st
|
|||||||
} else if (key == "wups") {
|
} else if (key == "wups") {
|
||||||
if (value == "0.7.1") {
|
if (value == "0.7.1") {
|
||||||
pluginInfo.setWUPSVersion(0, 7, 1);
|
pluginInfo.setWUPSVersion(0, 7, 1);
|
||||||
} else if (value == "0.8.0") {
|
} else if (value == "0.8.1") {
|
||||||
pluginInfo.setWUPSVersion(0, 8, 0);
|
pluginInfo.setWUPSVersion(0, 8, 1);
|
||||||
} else {
|
} else {
|
||||||
error = PLUGIN_PARSE_ERROR_INCOMPATIBLE_VERSION;
|
error = PLUGIN_PARSE_ERROR_INCOMPATIBLE_VERSION;
|
||||||
DEBUG_FUNCTION_LINE_ERR("Warning: Ignoring plugin - Unsupported WUPS version: %s.", value.c_str());
|
DEBUG_FUNCTION_LINE_ERR("Warning: Ignoring plugin - Unsupported WUPS version: %s.", value.c_str());
|
||||||
|
@ -128,11 +128,15 @@ void ConfigUtils::displayMenu() {
|
|||||||
|
|
||||||
CombinedInput baseInput;
|
CombinedInput baseInput;
|
||||||
VPadInput vpadInput;
|
VPadInput vpadInput;
|
||||||
WPADInput wpadInputs[4] = {
|
WPADInput wpadInputs[7] = {
|
||||||
WPAD_CHAN_0,
|
WPAD_CHAN_0,
|
||||||
WPAD_CHAN_1,
|
WPAD_CHAN_1,
|
||||||
WPAD_CHAN_2,
|
WPAD_CHAN_2,
|
||||||
WPAD_CHAN_3};
|
WPAD_CHAN_3,
|
||||||
|
WPAD_CHAN_4,
|
||||||
|
WPAD_CHAN_5,
|
||||||
|
WPAD_CHAN_6,
|
||||||
|
};
|
||||||
|
|
||||||
auto startTime = OSGetTime();
|
auto startTime = OSGetTime();
|
||||||
bool skipFirstInput = true;
|
bool skipFirstInput = true;
|
||||||
@ -171,7 +175,7 @@ void ConfigUtils::displayMenu() {
|
|||||||
complexData.vpad.data = vpadInput.vpad;
|
complexData.vpad.data = vpadInput.vpad;
|
||||||
complexData.vpad.tpCalib = vpadInput.tpCalib;
|
complexData.vpad.tpCalib = vpadInput.tpCalib;
|
||||||
complexData.vpad.vpadError = vpadInput.vpadError;
|
complexData.vpad.vpadError = vpadInput.vpadError;
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 7; i++) {
|
||||||
complexData.kpad.kpadError[i] = wpadInputs[i].kpadError;
|
complexData.kpad.kpadError[i] = wpadInputs[i].kpadError;
|
||||||
complexData.kpad.data[i] = wpadInputs[i].kpad;
|
complexData.kpad.data[i] = wpadInputs[i].kpad;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user