aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/waffle/api/waffle_window.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/waffle/api/waffle_window.c b/src/waffle/api/waffle_window.c
index b6d9fbd..fe9c8d8 100644
--- a/src/waffle/api/waffle_window.c
+++ b/src/waffle/api/waffle_window.c
@@ -90,12 +90,6 @@ waffle_window_show(struct waffle_window *self)
if (!api_check_entry(obj_list, 1))
return false;
- if (api_current_platform->dispatch->window_show == NULL) {
- // The platform does not yet implement waffle_window_show().
- // Succeed without warning.
- return true;
- }
-
return api_current_platform->dispatch->
window_show(self->native);
}