diff --git a/waterbox/melon/BizFileManager.h b/waterbox/melon/BizFileManager.h index 58f7f6e910..d898c57432 100644 --- a/waterbox/melon/BizFileManager.h +++ b/waterbox/melon/BizFileManager.h @@ -1,8 +1,6 @@ #ifndef BIZFILEMANAGER_H #define BIZFILEMANAGER_H -#include "types.h" - namespace FileManager { diff --git a/waterbox/melon/BizPlatform/BizConfig.cpp b/waterbox/melon/BizPlatform/BizConfig.cpp index 8ee5c3f729..1a5faecc09 100644 --- a/waterbox/melon/BizPlatform/BizConfig.cpp +++ b/waterbox/melon/BizPlatform/BizConfig.cpp @@ -7,9 +7,9 @@ namespace Platform struct ConfigCallbackInterface { - bool (*GetBoolean)(ConfigEntry entry); - int (*GetInteger)(ConfigEntry entry); - void (*GetString)(ConfigEntry entry, char* buffer, int bufferSize); + bool (*GetBoolean)(ConfigEntry entry); + int (*GetInteger)(ConfigEntry entry); + void (*GetString)(ConfigEntry entry, char* buffer, int bufferSize); bool (*GetArray)(ConfigEntry entry, void* buffer); }; diff --git a/waterbox/melon/BizPlatform/BizFile.cpp b/waterbox/melon/BizPlatform/BizFile.cpp index 0893038987..a8eef0719c 100644 --- a/waterbox/melon/BizPlatform/BizFile.cpp +++ b/waterbox/melon/BizPlatform/BizFile.cpp @@ -9,8 +9,8 @@ namespace Platform struct FileCallbackInterface { - int (*GetLength)(const char* path); - void (*GetData)(const char* path, u8* buffer); + int (*GetLength)(const char* path); + void (*GetData)(const char* path, u8* buffer); }; ECL_INVISIBLE static FileCallbackInterface FileCallbacks;