Fix types

This commit is contained in:
Maschell 2018-06-20 15:28:59 +02:00
parent 8c04d34d39
commit 25c3488c3c
2 changed files with 3 additions and 12 deletions

View File

@ -10,16 +10,7 @@
#include <unistd.h>
#include <dirent.h>
#include <wups.h>
extern void (*OSScreenInit)(void);
extern void (*OSScreenShutdown)(void);
extern u32 (*OSScreenGetBufferSizeEx)(u32 bufferNum);
extern s32 (*OSScreenSetBufferEx)(u32 bufferNum, void * addr);
extern s32 (*OSScreenClearBufferEx)(u32 bufferNum, u32 temp);
extern s32 (*OSScreenFlipBuffersEx)(u32 bufferNum);
extern s32 (*OSScreenPutFontEx)(u32 bufferNum, u32 posX, u32 posY, const char * buffer);
extern s32 (*OSScreenEnableEx)(u32 bufferNum, s32 enable);
extern u32 (*OSScreenPutPixelEx)(u32 bufferNum, u32 posX, u32 posY, u32 color);
#include <coreinit/screen.h>
static void * overlayfunction_ptr __attribute__((section(".data"))) = NULL;

View File

@ -78,8 +78,8 @@ typedef struct wups_loader_init_fs_args_t {
typedef struct wups_loader_app_started_args_t {
bool sd_mounted;
bool usb_mounted;
BOOL sd_mounted;
BOOL usb_mounted;
} wups_loader_app_started_args_t;