From ed84b7bd3ef36185296e06f36026eaf6f7c6d4e7 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Tue, 8 Jun 2021 05:08:51 +0200 Subject: [PATCH] filter/shader: Apply coding guidelines --- source/filters/filter-shader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/filters/filter-shader.cpp b/source/filters/filter-shader.cpp index 47ea952b..7e57d81b 100644 --- a/source/filters/filter-shader.cpp +++ b/source/filters/filter-shader.cpp @@ -22,7 +22,7 @@ #include #include "obs/gs/gs-helper.hpp" -#define ST "Filter.Shader" +#define ST_I18N "Filter.Shader" using namespace streamfx::filter::shader; @@ -163,7 +163,7 @@ shader_factory::~shader_factory() {} const char* shader_factory::get_name() { - return D_TRANSLATE(ST); + return D_TRANSLATE(ST_I18N); } void shader_factory::get_defaults2(obs_data_t* data)