mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 03:09:13 +00:00
Alright, this _TEMP_CONVERT_ stuff was a stupid idea
This commit is contained in:
@ -106,7 +106,7 @@ plKey plCloneSpawnModifier::SpawnClone(const char* cloneName, const char* cloneA
|
||||
const plLocation& loc = plKeyFinder::Instance().FindLocation(cloneAge, "BuiltIn");
|
||||
|
||||
// Find the clone template key
|
||||
plUoid objUoid(loc, plSceneObject::Index(), _TEMP_CONVERT_FROM_LITERAL(cloneName));
|
||||
plUoid objUoid(loc, plSceneObject::Index(), cloneName);
|
||||
plKey key = resMgr->FindKey(objUoid);
|
||||
|
||||
if (key)
|
||||
|
@ -775,7 +775,7 @@ void plResponderModifier::ILog(uint32_t color, const char* format, ...)
|
||||
if (!format || *format == '\0')
|
||||
return;
|
||||
|
||||
const char* keyName = _TEMP_CONVERT_TO_CONST_CHAR(GetKeyName());
|
||||
const char* keyName = GetKeyName().c_str();
|
||||
|
||||
// Make sure this key isn't in our list of keys to deny
|
||||
for (int i = 0; i < gNoLogStrings.size(); i++)
|
||||
|
Reference in New Issue
Block a user