diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp index 1059595ef1..2255f9f2ea 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModActionFactory.cpp @@ -8,6 +8,7 @@ #include "VideoCommon/GraphicsModSystem/Runtime/Actions/PrintAction.h" #include "VideoCommon/GraphicsModSystem/Runtime/Actions/ScaleAction.h" #include "VideoCommon/GraphicsModSystem/Runtime/Actions/SkipAction.h" +#include "VideoCommon/GraphicsModSystem/Runtime/Actions/TransformAction.h" namespace GraphicsModActionFactory { @@ -34,6 +35,10 @@ std::unique_ptr Create(std::string_view name, const picojson: { return CustomPipelineAction::Create(json_data, std::move(library)); } + else if (name == TransformAction::factory_name) + { + return TransformAction::Create(json_data); + } return nullptr; }