diff options
| author | coco875 <pereira.jannin@gmail.com> | 2025-11-28 14:28:40 +0100 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2025-12-01 12:39:42 -0600 |
| commit | e380573152eb131dab5bdfbf545c8c5388bf4fbe (patch) | |
| tree | 19e69e6146bb913c99ac2a9ea8d8e38c2ecd8826 /src | |
| parent | b66f9d9ea790b71d6dd0f7183e42a6b5f5bf6321 (diff) | |
comment print function
Diffstat (limited to 'src')
| -rw-r--r-- | src/factories/mk64/PackedDisplayListFactory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/factories/mk64/PackedDisplayListFactory.cpp b/src/factories/mk64/PackedDisplayListFactory.cpp index 3042319..e7b4f0d 100644 --- a/src/factories/mk64/PackedDisplayListFactory.cpp +++ b/src/factories/mk64/PackedDisplayListFactory.cpp @@ -556,7 +556,7 @@ std::optional<std::shared_ptr<IParsedData>> PackedDListFactory::parse(std::vecto while (i < decoded.size()) { uint8_t op = decoded[i++]; - SPDLOG_INFO("PackedDListFactory: opcode 0x{:02X} ({})", op, opcode_to_string(op)); + // SPDLOG_INFO("PackedDListFactory: opcode 0x{:02X} ({})", op, opcode_to_string(op)); if (op == PG_EOF) { break; } // LIGHTS: 0x00..0x14 @@ -854,9 +854,9 @@ done: } // Print gfx command output for debugging/export visualization - for (size_t j = 0; j + 1 < gfx.size(); j += 2) { - SPDLOG_INFO("PackedDL gfx[{}]: W0=0x{:08X} W1=0x{:08X}", j / 2, gfx[j], gfx[j + 1]); - } + // for (size_t j = 0; j + 1 < gfx.size(); j += 2) { + // SPDLOG_INFO("PackedDL gfx[{}]: W0=0x{:08X} W1=0x{:08X}", j / 2, gfx[j], gfx[j + 1]); + // } #ifdef STANDALONE // Pretty-print the generated commands using gfxd (same tooling as DisplayListFactory) |
