filedat: added spaces to strval() for more readability
This commit is contained in:
parent
a14ca48556
commit
666320d9ea
1 changed files with 1 additions and 1 deletions
|
|
@ -738,7 +738,7 @@ std::string ztd::chunkdat::strval(unsigned int alignment, std::string const& ali
|
||||||
{
|
{
|
||||||
ret += repeatString(aligner,alignment+1);
|
ret += repeatString(aligner,alignment+1);
|
||||||
ret += it.first;
|
ret += it.first;
|
||||||
ret += '=';
|
ret += " = ";
|
||||||
if(it.second!=nullptr)
|
if(it.second!=nullptr)
|
||||||
ret += it.second->strval(alignment+1, aligner);
|
ret += it.second->strval(alignment+1, aligner);
|
||||||
ret += '\n';
|
ret += '\n';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue