summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-05-26 02:06:36 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-05-26 02:06:36 -0600
commit0dbee953a2ab68e03405e8e1bc16abcffaf2b5a5 (patch)
treef1e118b88f3b1e5ee5893ee06ee089253155d770
parent06bc15d535b3cd623814be3b51d7a916cee8cb59 (diff)
Fixed missing type
-rw-r--r--src/Companion.cpp2
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, ";