diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-05-26 02:06:36 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2024-05-26 02:06:36 -0600 |
| commit | 0dbee953a2ab68e03405e8e1bc16abcffaf2b5a5 (patch) | |
| tree | f1e118b88f3b1e5ee5893ee06ee089253155d770 /src | |
| parent | 06bc15d535b3cd623814be3b51d7a916cee8cb59 (diff) | |
Fixed missing type
Diffstat (limited to 'src')
| -rw-r--r-- | src/Companion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp index 374ee85..5776ae5 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -865,7 +865,7 @@ void Companion::ProcessFile(YAML::Node root) { if(this->IsDebug()){ stream << "// 0x" << std::hex << std::uppercase << startptr << "\n"; } - stream << "char pad_" << padfile << "_" << std::to_string(gCurrentPad++) << "[] = {\n" << tab; + stream << "char pad_" << padfile << "_" << std::to_string(gCurrentPad++) << "[] = {\n" << tab_t; auto gapSize = gap & ~3; for(size_t j = 0; j < gapSize; j++){ stream << "0x00, "; |
