diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-02-21 21:12:28 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-02-21 21:12:28 +0100 |
commit | 26f1abdbcafde2425346eb54983cb83eff9b7925 (patch) | |
tree | 65e240ad4fdd5cdf51f16211f1555d72592c6f66 | |
parent | 4c2a181cdd71d6a960fc91b98a2629ce815764ab (diff) |
And a compile fix
-rw-r--r-- | src/tools/map_extractor/System.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp index 842fdb16722..8db9599ef2e 100644 --- a/src/tools/map_extractor/System.cpp +++ b/src/tools/map_extractor/System.cpp @@ -1148,7 +1148,7 @@ int main(int argc, char * arg[]) if (build > CONF_TargetBuild) { printf("Base locale-%s.MPQ has build higher than target build (%u > %u), nothing extracted!\n", Locales[i], build, CONF_TargetBuild); - return; + return 0; } printf("Detected client build: %u\n", build); |