From 2978db4d308c845d5cb54651d69adb76f4bcbc1a Mon Sep 17 00:00:00 2001 From: Clownacy Date: Mon, 20 Apr 2020 12:48:42 +0100 Subject: [PATCH] More cleanup --- src/Backends/WiiU/Controller.cpp | 3 +++ src/Backends/WiiU/Misc.cpp | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Backends/WiiU/Controller.cpp b/src/Backends/WiiU/Controller.cpp index 65359a8f..10206001 100644 --- a/src/Backends/WiiU/Controller.cpp +++ b/src/Backends/WiiU/Controller.cpp @@ -1,5 +1,8 @@ #include "../Controller.h" +// Vanilla Cave Story's controller system is ill-suited for console ports, +// so we emulate a keyboard instead (see `Misc.cpp`). + bool ControllerBackend_Init(void) { return false; diff --git a/src/Backends/WiiU/Misc.cpp b/src/Backends/WiiU/Misc.cpp index 2402551c..02d9e099 100644 --- a/src/Backends/WiiU/Misc.cpp +++ b/src/Backends/WiiU/Misc.cpp @@ -130,18 +130,19 @@ void Backend_ShowMessageBox(const char *title, const char *message) { (void)title; (void)message; + // TODO - We might be able to funnel this into `WHBLogPrintf`... } ATTRIBUTE_FORMAT_PRINTF(1, 2) void Backend_PrintError(const char *format, ...) { (void)format; - // We might be able to funnel this into `WHBLogPrintf`... + // TODO - We might be able to funnel this into `WHBLogPrintf`... } ATTRIBUTE_FORMAT_PRINTF(1, 2) void Backend_PrintInfo(const char *format, ...) { (void)format; - // We might be able to funnel this into `WHBLogPrintf`... + // TODO - We might be able to funnel this into `WHBLogPrintf`... } unsigned long Backend_GetTicks(void)