Tweaked error messages in logs

This commit is contained in:
Alexandre 2026-08-31 01:45:39 +02:00
parent b01fab5b9c
commit 3844f654cb
2 changed files with 4 additions and 2 deletions

View File

@ -310,7 +310,7 @@ void Logger::logFatal(
Args&&... args
) {
// Separator
logDisk("=============================== CRASH LOGS ===============================");
logDisk("================================== CRASH LOGS ==================================");
logDisk(
module,
@ -342,7 +342,7 @@ void Logger::merge(std::string_view source) {
}
void Logger::logSeparator() {
logDisk("=========================================================================");
logDisk("================================================================================");
}
void Logger::clear() {

View File

@ -73,6 +73,8 @@ std::optional<std::vector<std::shared_ptr<MeshAsset>>> loadGltfMeshes(
std::vector<uint32_t> indices;
std::vector<Vertex> vertices;
// Now, some gltf gymnastics to get data into the correct buffers.
// Debug things
return meshes;