From 51f34b2172b7fc1323d6fc84a86e59c000a8c61a Mon Sep 17 00:00:00 2001 From: NotAdam Date: Thu, 25 Jul 2019 23:33:06 +1000 Subject: [PATCH] fix action_parse not checking for the correct template file --- src/tools/action_parse/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/action_parse/main.cpp b/src/tools/action_parse/main.cpp index 3adce507..7987febe 100644 --- a/src/tools/action_parse/main.cpp +++ b/src/tools/action_parse/main.cpp @@ -74,7 +74,7 @@ int main() Logger::init( "action_parse" ); - if( !fs::exists( "ActionLut.cpp.tmpl" ) ) + if( !fs::exists( "ActionLutData.cpp.tmpl" ) ) throw std::runtime_error( "ActionLut.cpp.tmpl is missing in working directory" ); Logger::info( "Setting up EXD data" );