MacOSX fixes

This commit is contained in:
marauder2k7 2023-12-04 00:16:07 +00:00
parent c39461c3fb
commit 5f8c59a8df
2 changed files with 3 additions and 4 deletions

View file

@ -1211,7 +1211,7 @@ bool GBitmap::writeBitmap( const String &bmType, const Torque::Path& path, U32
FileStream stream;
if (!stream.open(path, Torque::FS::File::Write))
{
Con::errorf("GBitmap::writeBitmap failed to open path %s", path);
Con::errorf("GBitmap::writeBitmap failed to open path %s", path.getFullFileName().c_str());
stream.close();
return false;
}