More cleanup
This commit is contained in:
parent
2f7db28da8
commit
2978db4d30
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
#include "../Controller.h"
|
#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)
|
bool ControllerBackend_Init(void)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -130,18 +130,19 @@ void Backend_ShowMessageBox(const char *title, const char *message)
|
||||||
{
|
{
|
||||||
(void)title;
|
(void)title;
|
||||||
(void)message;
|
(void)message;
|
||||||
|
// TODO - We might be able to funnel this into `WHBLogPrintf`...
|
||||||
}
|
}
|
||||||
|
|
||||||
ATTRIBUTE_FORMAT_PRINTF(1, 2) void Backend_PrintError(const char *format, ...)
|
ATTRIBUTE_FORMAT_PRINTF(1, 2) void Backend_PrintError(const char *format, ...)
|
||||||
{
|
{
|
||||||
(void)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, ...)
|
ATTRIBUTE_FORMAT_PRINTF(1, 2) void Backend_PrintInfo(const char *format, ...)
|
||||||
{
|
{
|
||||||
(void)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)
|
unsigned long Backend_GetTicks(void)
|
||||||
|
|
Loading…
Add table
Reference in a new issue