Windows build fixes

This commit is contained in:
Mr-Wiseguy
2023-10-23 17:51:21 -04:00
parent f361fddd3e
commit 1037bb5206
6 changed files with 54 additions and 32 deletions
+8
View File
@@ -97,7 +97,15 @@ void RT64Init(uint8_t* rom, uint8_t* rdram, Multilibultra::WindowHandle window_h
gfx_info.SP_STATUS_REG = &SP_STATUS_REG;
gfx_info.RDRAM_SIZE = &RDRAM_SIZE;
#if defined(_WIN32)
InitiateGFXWindows(gfx_info, window_handle);
#elif defined(__ANDROID__)
static_assert(false && "Unimplemented");
#elif defined(__linux__)
InitiateGFXLinux(gfx_info, window_handle.window, window_handle.display);
#else
static_assert(false && "Unimplemented");
#endif
}
void RT64SendDL(uint8_t* rdram, const OSTask* task) {