diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2022-01-02 19:19:51 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-02 17:19:51 -0500 |
| commit | 0530b60691122ebbccffe4b8c813acd0438fcde6 (patch) | |
| tree | 984d6707859a11221dd6e8d58085a032caebd99a /ZAPD/ZTexture.cpp | |
| parent | a0d3f7b68b754f0233ee0a8f014c4432e87dcc42 (diff) | |
Don't generate extern declarations for unaccounted variables (#229)
* Don't generate extern declarations for unaccounted variables
* Update jenkinsfile for MM
* format
Diffstat (limited to 'ZAPD/ZTexture.cpp')
| -rw-r--r-- | ZAPD/ZTexture.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
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; |
