mirror of
https://github.com/izzy2lost/Torch.git
synced 2026-07-06 00:18:35 -07:00
Changed hex to dec on count factories
This commit is contained in:
@@ -129,7 +129,7 @@ void DListCodeExporter::Export(std::ostream &write, std::shared_ptr<IParsedData>
|
||||
if (Companion::Instance->IsDebug()) {
|
||||
const auto sz = (sizeof(uint32_t) * cmds.size());
|
||||
|
||||
write << "// size: 0x" << std::hex << std::uppercase << (sz / 8) << "\n";
|
||||
write << "// count: " << (sz / 8) << " DLists\n";
|
||||
if (IS_SEGMENTED(offset)) {
|
||||
offset = SEGMENT_OFFSET(offset);
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ void VtxCodeExporter::Export(std::ostream &write, std::shared_ptr<IParsedData> r
|
||||
write << "};\n";
|
||||
|
||||
if (Companion::Instance->IsDebug()) {
|
||||
write << "// count: " << vtx.size() << "\n";
|
||||
write << "// count: " << vtx.size() << " Vtxs\n";
|
||||
write << "// 0x" << std::hex << std::uppercase << (offset + (sizeof(VtxRaw) * vtx.size())) << "\n";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user