mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
partial revert
This commit is contained in:
@@ -92,7 +92,7 @@ RemoteDebug::Variable::Variable(const std::string& name, void *memLoc, VARIABLE_
|
||||
break;
|
||||
|
||||
case CSTRING:
|
||||
m_value.stringValue = s;
|
||||
m_value.stringValue = &s;
|
||||
break;
|
||||
|
||||
case BOOL:
|
||||
|
||||
@@ -45,7 +45,7 @@ class RemoteDebug::Variable
|
||||
int32 intValue;
|
||||
float floatValue;
|
||||
int32 boolValue;
|
||||
char stringValue;
|
||||
char* stringValue;
|
||||
};
|
||||
|
||||
Variable(const std::string& name, void *memLoc, VARIABLE_TYPES type);
|
||||
|
||||
Reference in New Issue
Block a user