Go for a consistent return value

This commit is contained in:
twinaphex 2020-07-17 14:44:57 +02:00
parent b02d538a63
commit 7c66a7457a
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ static bool gfx_ctx_khr_display_set_resize(void *data,
khr->vk.context.invalid_swapchain = true;
khr->vk.need_new_swapchain = false;
return false;
return true;
}
static bool gfx_ctx_khr_display_set_video_mode(void *data,

View File

@ -122,7 +122,7 @@ static bool gfx_ctx_w_vk_set_resize(void *data,
win32_vk.context.invalid_swapchain = true;
win32_vk.need_new_swapchain = false;
return false;
return true;
}
static void gfx_ctx_w_vk_update_title(void *data)