2022-07-27 15:25:25 +00:00
|
|
|
#include <dolphin/vi.h>
|
2022-07-29 20:46:03 +00:00
|
|
|
|
|
|
|
#include "../window.hpp"
|
2022-07-27 15:25:25 +00:00
|
|
|
|
|
|
|
void VIInit() {}
|
|
|
|
u32 VIGetTvFormat() { return 0; }
|
|
|
|
void VIFlush() {}
|
2022-07-29 20:46:03 +00:00
|
|
|
|
|
|
|
void VISetWindowTitle(const char* title) { aurora::window::set_title(title); }
|
|
|
|
void VISetWindowFullscreen(bool fullscreen) { aurora::window::set_fullscreen(fullscreen); }
|
|
|
|
bool VIGetWindowFullscreen() { return aurora::window::get_fullscreen(); }
|