From 0530b60691122ebbccffe4b8c813acd0438fcde6 Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Sun, 2 Jan 2022 19:19:51 -0300 Subject: Don't generate extern declarations for unaccounted variables (#229) * Don't generate extern declarations for unaccounted variables * Update jenkinsfile for MM * format --- ZAPD/ZTexture.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ZAPD/ZTexture.cpp') diff --git a/ZAPD/ZTexture.cpp b/ZAPD/ZTexture.cpp index 60884ac..0d72d9c 100644 --- a/ZAPD/ZTexture.cpp +++ b/ZAPD/ZTexture.cpp @@ -776,9 +776,8 @@ Declaration* ZTexture::DeclareVar(const std::string& prefix, incStr = StringHelper::Sprintf("%s.%s.inc.c", poolEntry->second.path.c_str(), GetExternalExtension().c_str()); else - incStr = - StringHelper::Sprintf("%s.u32.%s.inc.c", poolEntry->second.path.c_str(), - GetExternalExtension().c_str()); + incStr = StringHelper::Sprintf("%s.u32.%s.inc.c", poolEntry->second.path.c_str(), + GetExternalExtension().c_str()); } } size_t texSizeDivisor = (dWordAligned) ? 8 : 4; -- cgit v1.2.3