diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2021-01-26 21:25:49 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-26 21:25:49 -0500 |
| commit | d776f08780bb2554ebbf7ba23474d5ec7b216148 (patch) | |
| tree | cbf84bcb55827b56a331d3bbaf28aaf7eedff3d1 /ZAPD/Main.cpp | |
| parent | 1472f6aec98d476d0683718b35229fb4ad0957f7 (diff) | |
ZAPD prints out git hash (#80)
Diffstat (limited to 'ZAPD/Main.cpp')
| -rw-r--r-- | ZAPD/Main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ZAPD/Main.cpp b/ZAPD/Main.cpp index 4ae1174..ceb4089 100644 --- a/ZAPD/Main.cpp +++ b/ZAPD/Main.cpp @@ -9,6 +9,7 @@ #include "File.h" #include "Directory.h" #include "Globals.h" +#include "BuildInfo.h" #if !defined(_MSC_VER) && !defined(__CYGWIN__) #include <execinfo.h> @@ -181,7 +182,7 @@ int NewMain(int argc, char* argv[]) } if (Globals::Instance->verbosity >= VERBOSITY_INFO) - printf("ZAPD: Zelda Asset Processor For Decomp\n"); + printf("ZAPD: Zelda Asset Processor For Decomp: %s\n", gBuildHash); if (fileMode == ZFileMode::Build || fileMode == ZFileMode::Extract || fileMode == ZFileMode::BuildSourceFile) { |
