Fixed missing type

This commit is contained in:
KiritoDv
2024-05-26 02:06:36 -06:00
parent 06bc15d535
commit 0dbee953a2
+1 -1
View File
@@ -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, ";