fix some more crashes (on OS X only)

git-svn-id: svn://svn.icculus.org/netradiant/trunk@208 61c419a2-8eb2-4b30-bcec-8cead039b335
This commit is contained in:
divverent 2009-03-04 14:56:32 +00:00
parent fa8fcedca8
commit a4f89fe0f8
3 changed files with 8 additions and 4 deletions

View File

@ -149,7 +149,7 @@ void ExportData::GetShaderNameFromShaderPath(const char* path, std::string& name
name = tmp.substr(last_slash + 1, tmp.length() - last_slash);
#ifdef _DEBUG
globalOutputStream() << "Last: " << last_slash << " " << "length: " << (const unsigned int)tmp.length() << "Name: " << name.c_str() << "\n";
globalOutputStream() << "Last: " << (const unsigned int) last_slash << " " << "length: " << (const unsigned int)tmp.length() << "Name: " << name.c_str() << "\n";
#endif
}

View File

@ -212,7 +212,11 @@ void DoCommandListDlg()
if(!m_commandList.failed())
{
m_commandList << makeLeftJustified(name, 25) << " " << modifiers.c_str() << '\n';
int l = strlen(name);
m_commandList << name;
while(l++ < 25)
m_commandList << ' ';
m_commandList << modifiers.c_str() << '\n';
}
}
} visitor(path.c_str(), store);

View File

@ -1044,8 +1044,8 @@ void Map_LoadFile (const char *filename)
globalOutputStream() << "--- LoadMapFile ---\n";
globalOutputStream() << g_map.m_name.c_str() << "\n";
globalOutputStream() << makeLeftJustified(Unsigned(g_brushCount.get()), 5) << " primitive\n";
globalOutputStream() << makeLeftJustified(Unsigned(g_entityCount.get()), 5) << " entities\n";
globalOutputStream() << Unsigned(g_brushCount.get()) << " primitive\n";
globalOutputStream() << Unsigned(g_entityCount.get()) << " entities\n";
//GlobalEntityCreator().printStatistics();