From 0dbee953a2ab68e03405e8e1bc16abcffaf2b5a5 Mon Sep 17 00:00:00 2001 From: KiritoDv Date: Sun, 26 May 2024 02:06:36 -0600 Subject: Fixed missing type --- src/Companion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Companion.cpp') 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, "; -- cgit v1.2.3