I forgot I'm not a Java programmer
This commit is contained in:
parent
39f2f4ff62
commit
39812a9370
@ -15,17 +15,17 @@ namespace Components
|
|||||||
{
|
{
|
||||||
assert(!this->dvarName.empty() && this->dvar == nullptr);
|
assert(!this->dvarName.empty() && this->dvar == nullptr);
|
||||||
|
|
||||||
auto* dvar = Game::Dvar_FindVar(this->dvarName.data());
|
auto* var = Game::Dvar_FindVar(this->dvarName.data());
|
||||||
|
|
||||||
// If the dvar can't be found it will be registered as an empty string dvar
|
// If the dvar can't be found it will be registered as an empty string dvar
|
||||||
if (dvar == nullptr)
|
if (var == nullptr)
|
||||||
{
|
{
|
||||||
this->dvar = const_cast<Game::dvar_t*>(Game::Dvar_SetFromStringByNameFromSource(this->dvarName.data(), "",
|
this->dvar = const_cast<Game::dvar_t*>(Game::Dvar_SetFromStringByNameFromSource(this->dvarName.data(), "",
|
||||||
Game::DvarSetSource::DVAR_SOURCE_INTERNAL));
|
Game::DvarSetSource::DVAR_SOURCE_INTERNAL));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this->dvar = dvar;
|
this->dvar = var;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user