Commit f2fc43ac authored by Sam Lantinga's avatar Sam Lantinga

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.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403414
parent 846fd2c0
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment