From 6aca35736090ac89ecca2aab42b6616aec8748f8 Mon Sep 17 00:00:00 2001 From: OmniBlade Date: Mon, 31 May 2021 22:10:25 +0100 Subject: [PATCH] [RA] Fixes invisible trigger editor in editor mode. Another missed loop that needs a frame limiter call. --- redalert/trigtype.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/redalert/trigtype.cpp b/redalert/trigtype.cpp index 25f93447..d8a6c5d5 100644 --- a/redalert/trigtype.cpp +++ b/redalert/trigtype.cpp @@ -54,6 +54,7 @@ #ifdef SCENARIO_EDITOR #include "drop.h" #include "textbtn.h" +#include "common/framelimit.h" #endif /*********************************************************************************************** @@ -1921,6 +1922,8 @@ bool TriggerTypeClass::Edit(void) } break; } + + Frame_Limiter(); } return (false); }