mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-10 22:24:33 +00:00
fixes and some minor bc adjustment.
This commit is contained in:
parent
bc0f5bd3a3
commit
bfc0109485
7 changed files with 11 additions and 22 deletions
|
|
@ -175,14 +175,14 @@ class ConsoleValue
|
|||
}
|
||||
|
||||
public:
|
||||
ConsoleValue()
|
||||
explicit ConsoleValue()
|
||||
{
|
||||
setEmptyString();
|
||||
type = ConsoleValueType::cvSTEntry;
|
||||
s = const_cast<char*>(StringTable->EmptyString());
|
||||
}
|
||||
|
||||
ConsoleValue(ConsoleValue&& ref) noexcept
|
||||
{
|
||||
cleanupData();
|
||||
type = ref.type;
|
||||
|
||||
switch (ref.type)
|
||||
|
|
@ -217,7 +217,6 @@ public:
|
|||
|
||||
TORQUE_FORCEINLINE void reset()
|
||||
{
|
||||
cleanupData();
|
||||
setEmptyString();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue