[teagba] Cleanup
All checks were successful
Build / build (push) Successful in 1m20s

This commit is contained in:
2025-06-23 01:03:33 -05:00
parent b9ffae0269
commit c54c0bad38
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ extern void (*__preinit_array_end[]) (void);
extern void (*__init_array_start[]) (void);
extern void (*__init_array_end[]) (void);
int main(int argc, const char **argv);
int main(int argc, char const **argv);
extern "C" {
@ -50,7 +50,7 @@ void __libc_init_array() {
}
int c_start() {
const char *args[2] = {"", "rom.oxfs"};
char const *args[2] = {"", "rom.oxfs"};
ox::heapmgr::initHeap(HEAP_BEGIN, HEAP_END);
mgba::initConsole();
#pragma GCC diagnostic push