Date: Fri, 02 Jan 2009 00:54:48 +0100

From: Couriersud
Subject: SDL1.3 Two small bugs ...

The first bug is rather straight forward; XCloseDevice needs a device,
not an ID.
This commit is contained in:
Sam Lantinga
2009-01-02 01:34:52 +00:00
parent 91225b5f6f
commit b3d92749cf

View File

@@ -31,7 +31,7 @@ X11_FreeMouse(SDL_Mouse * mouse)
X11_MouseData *data = (X11_MouseData *) mouse->driverdata;
if (data) {
XCloseDevice(data->display, mouse->id);
XCloseDevice(data->display, data->device);
SDL_free(data);
}
}