diff --git a/source/obs/gs/gs-effect.cpp b/source/obs/gs/gs-effect.cpp index 2b158d65..dfea8ed9 100644 --- a/source/obs/gs/gs-effect.cpp +++ b/source/obs/gs/gs-effect.cpp @@ -721,7 +721,7 @@ void gs::effect_parameter::set_string(std::string const& v) void gs::effect_parameter::get_string(std::string& v) { - if (get_type() != type::Matrix) + if (get_type() != type::String) throw std::bad_cast(); size_t ptr_len = gs_effect_get_val_size(_param); uint8_t* ptr = static_cast(gs_effect_get_val(_param)); @@ -735,7 +735,7 @@ void gs::effect_parameter::get_string(std::string& v) void gs::effect_parameter::get_default_string(std::string& v) { - if (get_type() != type::Matrix) + if (get_type() != type::String) throw std::bad_cast(); size_t ptr_len = gs_effect_get_val_size(_param); uint8_t* ptr = static_cast(gs_effect_get_default_val(_param));