partial revert

This commit is contained in:
DarthArgus
2015-10-27 21:09:06 -05:00
parent 203a1aee47
commit ab9c60957f
2 changed files with 2 additions and 2 deletions
@@ -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);