From 08233cc31b932fe6bc8ae7512134432bc9c78fed Mon Sep 17 00:00:00 2001 From: obligaron Date: Sun, 25 Apr 2021 08:03:10 +0200 Subject: [PATCH] player_test - Fix wrong extern definition for PM_DoGotHit --- test/player_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/player_test.cpp b/test/player_test.cpp index bb106e032..3162605b1 100644 --- a/test/player_test.cpp +++ b/test/player_test.cpp @@ -5,7 +5,7 @@ using namespace devilution; namespace devilution { -extern int PM_DoGotHit(int pnum); +extern bool PM_DoGotHit(int pnum); } int RunBlockTest(int frames, int flags)