From d0dc6acb97ee4bde2ca77329cdbd692164dcfa0f Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 16 Apr 2019 03:38:49 +0200 Subject: [PATCH] Fix DrawSpell --- Source/control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/control.cpp b/Source/control.cpp index 673794de3..507459c10 100644 --- a/Source/control.cpp +++ b/Source/control.cpp @@ -375,7 +375,7 @@ void DrawSpell() if (plr[myplr]._pRSpell < 0) st = RSPLTYPE_INVALID; SetSpellTrans(st); - if (spl != RSPLTYPE_INVALID) + if (spl != SPL_INVALID) DrawSpellCel(629, 631, (BYTE *)pSpellCels, (char)SpellITbl[spl], 56); else DrawSpellCel(629, 631, (BYTE *)pSpellCels, 27, 56);