mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
gs-effect: Fix get_string and get_default_string
This commit is contained in:
parent
c6559d84ba
commit
8603fef897
1 changed files with 2 additions and 2 deletions
|
@ -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<uint8_t*>(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<uint8_t*>(gs_effect_get_default_val(_param));
|
||||
|
|
Loading…
Reference in a new issue