From c8e0ec0580b16460372ae59a17b1b824eb5df4f1 Mon Sep 17 00:00:00 2001 From: Guilherme Felipe Date: Mon, 28 May 2018 09:36:30 -0300 Subject: Change position of validation in set_custom_mouse_cursor --- platform/windows/os_windows.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'platform/windows/os_windows.cpp') diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index f013d1a6a..aef1b8a59 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -2074,10 +2074,11 @@ void OS_Windows::set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shap ERR_FAIL_COND(!texture.is_valid()); ERR_FAIL_COND(texture_size.width > 256 || texture_size.height > 256); - ERR_FAIL_COND(!image.is_valid()); image = texture->get_data(); + ERR_FAIL_COND(!image.is_valid()); + UINT image_size = texture_size.width * texture_size.height; UINT size = sizeof(UINT) * image_size; -- cgit v1.2.3-70-g09d2