mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 07:45:39 +00:00
Fix Ptr::toString
This commit is contained in:
parent
9087de1596
commit
6ba42314df
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ namespace MWWorld
|
|||
{
|
||||
if (mRef == nullptr)
|
||||
return "null object";
|
||||
std::string result = mRef->isDeleted() ? "object" : "deleted object";
|
||||
std::string result = mRef->isDeleted() ? "deleted object" : "object";
|
||||
result += mRef->mRef.getRefNum().toString();
|
||||
result += " (";
|
||||
result += mRef->getTypeDescription();
|
||||
|
|
Loading…
Reference in a new issue