mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 13:00:11 -07:00
Removes a couple printf in favour of SPDLOG calls.
This commit is contained in:
parent
e4b58e5a0c
commit
1f351418e1
2 changed files with 2 additions and 6 deletions
|
@ -511,9 +511,7 @@ void Ship::CutsceneV0::ParseFileBinary(BinaryReader* reader, Resource* res)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
#ifdef _DEBUG
|
SPDLOG_TRACE("CutsceneV0: Unknown command {}\n", commandId);
|
||||||
printf("CutsceneV0: Unknown command %x\n", commandId);
|
|
||||||
#endif
|
|
||||||
// error?
|
// error?
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,9 +56,7 @@ namespace Ship
|
||||||
|
|
||||||
patches.clear();
|
patches.clear();
|
||||||
|
|
||||||
#if _DEBUG
|
|
||||||
if (file != nullptr)
|
if (file != nullptr)
|
||||||
printf("Deconstructor called on file %s\n", file->path.c_str());
|
SPDLOG_TRACE("Deconstructor called on file %s\n", file->path.c_str());
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue