diff options
Diffstat (limited to 'src/Companion.cpp')
| -rw-r--r-- | src/Companion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp index d52b40d..4b2b234 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -786,7 +786,7 @@ void Companion::Process() { SPDLOG_WARN("Creating pad of 0x{:X} bytes", gap); const auto padfile = this->gCurrentDirectory.filename().string(); if(this->IsDebug()){ - stream << "// 0x" << std::hex << startptr << "\n"; + stream << "// 0x" << std::hex << std::uppercase << startptr << "\n"; } stream << "char pad_" << padfile << "_" << std::to_string(gCurrentPad++) << "[] = {\n" << tab; auto gapSize = gap & ~3; @@ -795,7 +795,7 @@ void Companion::Process() { } stream << "\n};\n"; if(this->IsDebug()){ - stream << "// 0x" << std::hex << end << "\n\n"; + stream << "// 0x" << std::hex << std::uppercase << end << "\n\n"; } else { stream << "\n"; } |
