Skip to content

Commit 578935a

Browse files
committed
Fix android/wasm;
1 parent d06af9e commit 578935a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/core/os_android.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,14 @@ bool os_window_is_focused(void) {
374374
return false;
375375
}
376376

377+
bool os_window_is_fullscreen(void) {
378+
return false;
379+
}
380+
381+
void os_window_set_fullscreen(bool fullscreen) {
382+
//
383+
}
384+
377385
void os_window_get_size(uint32_t* width, uint32_t* height) {
378386
*width = *height = 0;
379387
}

src/core/os_wasm.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,14 @@ bool os_window_is_focused(void) {
351351
return true;
352352
}
353353

354+
bool os_window_is_fullscreen(void) {
355+
return false;
356+
}
357+
358+
void os_window_set_fullscreen(bool fullscreen) {
359+
//
360+
}
361+
354362
void os_window_get_size(uint32_t* width, uint32_t* height) {
355363
*width = state.width;
356364
*height = state.height;

0 commit comments

Comments
 (0)