From 3746c31f889ccf80a6fcc70efc77fba3396f1d25 Mon Sep 17 00:00:00 2001
From: Ziusudra <ziusudra@gmail.com>
Date: Tue, 22 Jan 2013 23:30:41 -0700
Subject: [PATCH] set fHardwareCursorEnabled false in case we can't set one
---
src/servers/app/drawing/AccelerantHWInterface.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/servers/app/drawing/AccelerantHWInterface.cpp b/src/servers/app/drawing/AccelerantHWInterface.cpp
index 48a2b37..b235f6b 100644
a
|
b
|
AccelerantHWInterface::SetCursor(ServerCursor* cursor)
|
1337 | 1337 | HWInterface::SetCursor(cursor); |
1338 | 1338 | // HWInterface claims ownership of cursor. |
1339 | 1339 | |
| 1340 | fHardwareCursorEnabled = false; |
| 1341 | |
1340 | 1342 | // cursor should never be NULL, but let us be safe!! |
1341 | 1343 | if (cursor == NULL || LockExclusiveAccess() == false) |
1342 | 1344 | return; |