Skip to content

Commit

Permalink
that's not supposed to be here
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim2000 committed Dec 8, 2024
1 parent 69067ab commit 8a273e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ typedef enum {
Wii, vWii, Mini
} ConsoleType;

static ConsoleType ThisConsole = vWii;
static ConsoleType ThisConsole = Wii;
static int ThisRegion = 0;

const char GetSystemRegionLetter(void) {
Expand Down
2 changes: 2 additions & 0 deletions source/malloc.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include <stdlib.h>

void* aligned_alloc(size_t align, size_t size);

static inline void* memalign32(size_t size) {
return aligned_alloc(0x20, __builtin_align_up(size, 0x20));
}

0 comments on commit 8a273e3

Please sign in to comment.