From a8ea5bef00ba3a22c4f05fad1e583843b65c2722 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 6 Oct 2021 14:10:22 +0200 Subject: [PATCH] - removed unused static array. --- src/scripting/backend/codegen_doom.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scripting/backend/codegen_doom.cpp b/src/scripting/backend/codegen_doom.cpp index e107563543..30385519ce 100644 --- a/src/scripting/backend/codegen_doom.cpp +++ b/src/scripting/backend/codegen_doom.cpp @@ -521,7 +521,6 @@ ExpEmit FxActionSpecialCall::Emit(VMFunctionBuilder *build) unsigned i = 0; // Call the BuiltinCallLineSpecial function to perform the desired special. - static uint8_t reginfo[] = { REGT_INT, REGT_POINTER, REGT_INT, REGT_INT, REGT_INT, REGT_INT, REGT_INT }; auto sym = FindBuiltinFunction(NAME_BuiltinCallLineSpecial); assert(sym);