From e222dbc5547510974157d7e8a7d9f84869ba0ec3 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 17 Sep 2023 02:44:47 -0700 Subject: [PATCH] fix space/tabbing here --- waterbox/melon/BizFileManager.h | 2 -- waterbox/melon/BizPlatform/BizConfig.cpp | 6 +++--- waterbox/melon/BizPlatform/BizFile.cpp | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) 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;