From 4ffd02b1e14ef8e605cebb7071a4841c7e4b8428 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 23 Aug 2021 21:00:45 +1000 Subject: [PATCH] - Blood: Declare `qavGetInterpType()` as static within qav.cpp. --- source/games/blood/src/qav.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/blood/src/qav.cpp b/source/games/blood/src/qav.cpp index ae472db18..fb67dbec5 100644 --- a/source/games/blood/src/qav.cpp +++ b/source/games/blood/src/qav.cpp @@ -95,7 +95,7 @@ static void qavInitTileFinderMap() }); } -QAVPrevTileFinder qavGetInterpType(const FString& type) +static QAVPrevTileFinder qavGetInterpType(const FString& type) { if (!qavPrevTileFinders.CountUsed()) qavInitTileFinderMap(); return *qavPrevTileFinders.CheckKey(type);