diff --git a/src/winapi_hooks.c b/src/winapi_hooks.c
index ffe59c7..15fc67c 100644
--- a/src/winapi_hooks.c
+++ b/src/winapi_hooks.c
@@ -116,7 +116,7 @@ int WINAPI fake_ShowCursor(BOOL bShow)
 {
     static int count;
 
-    if (g_ddraw)
+    //if (g_ddraw)
         return real_ShowCursor(bShow);
 
     return bShow ? ++count : --count;