summaryrefslogtreecommitdiff
path: root/src/Companion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Companion.cpp')
-rw-r--r--src/Companion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp
index 2372116..c7be9b6 100644
--- a/src/Companion.cpp
+++ b/src/Companion.cpp
@@ -123,11 +123,11 @@ void Companion::ExtractNode(YAML::Node& node, std::string& name, SWrapper* binar
if(this->gConfig.exporterType == ExportType::Code) {
if(node["pad"]){
auto pad = GetSafeNode<uint32_t>(node, "pad");
- stream << "char pad_" << gCurrentPad++ << "[] = {\n";
+ stream << "char pad_" << gCurrentPad++ << "[] = {\n" << tab;
for(int i = 0; i < pad; i++){
stream << "0x00, ";
}
- stream << "};\n\n";
+ stream << "\n};\n\n";
}
}