mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 04:54:35 +00:00
Wayland: Fix error for missing protocol
A protocol not being available is not a platform error. The platform is doing fine; we're just sad that it lacks a feature we want.
This commit is contained in:
parent
e85b645b8a
commit
09ebf3f0bf
@ -2507,8 +2507,8 @@ static void lockPointer(_GLFWwindow* window)
|
||||
{
|
||||
if (!_glfw.wl.relativePointerManager)
|
||||
{
|
||||
_glfwInputError(GLFW_PLATFORM_ERROR,
|
||||
"Wayland: no relative pointer manager");
|
||||
_glfwInputError(GLFW_FEATURE_UNAVAILABLE,
|
||||
"Wayland: The compositor does not support pointer locking");
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user