From 695f06fcaafba4dd8dc83d36bfab9b7e780f4266 Mon Sep 17 00:00:00 2001 From: Vithorio Polten Date: Mon, 3 Jun 2024 20:39:35 -0300 Subject: [PATCH] chore: throw error if get_mouse_loc is used on windows before we fix it --- src/platform/windows/input.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platform/windows/input.cpp b/src/platform/windows/input.cpp index c919674963b..10cd30529df 100644 --- a/src/platform/windows/input.cpp +++ b/src/platform/windows/input.cpp @@ -560,6 +560,7 @@ namespace platf { util::point_t get_mouse_loc(input_t &input) { + throw std::exception(); // TODO "not implemented" // TODO: Tests are failing, something wrong here? // syncThreadDesktop(); POINT p;