More cleanup

This commit is contained in:
Clownacy 2020-04-20 12:48:42 +01:00
parent 2f7db28da8
commit 2978db4d30
2 changed files with 6 additions and 2 deletions

View file

@ -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;

View file

@ -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)