From 145283aaebcb9bedc8b8c1a5dbce18b40fa3d331 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 11 Dec 2020 09:42:15 +0100 Subject: [PATCH] [hellfire] Correct function call in TryIconCurs --- Source/diablo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index 0bd2cd107..25089de32 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -828,7 +828,7 @@ static BOOL TryIconCurs() if (pcursinvitem != -1) DoOil(myplr, pcursinvitem); else - SetCursor_(CURSOR_HAND); + NewCursor(CURSOR_HAND); return TRUE; }