fix space/tabbing here

This commit is contained in:
CasualPokePlayer 2023-09-17 02:44:47 -07:00
parent 0ad1f7feb2
commit e222dbc554
3 changed files with 5 additions and 7 deletions

View File

@ -1,8 +1,6 @@
#ifndef BIZFILEMANAGER_H
#define BIZFILEMANAGER_H
#include "types.h"
namespace FileManager
{

View File

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

View File

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