Skip to content

Commit

Permalink
[9167] Remove unused arg in new function added to prev. commit.
Browse files Browse the repository at this point in the history
Also update ad.exe
  • Loading branch information
VladimirMangos committed Jan 13, 2010
1 parent fb53dde commit 6f42488
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contrib/extractor/System.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ void ExtractMapsFromMpq()
delete [] map_ids;
}

bool ExtractFile( int locale, char const* mpq_name, std::string const& filename )
bool ExtractFile( char const* mpq_name, std::string const& filename )
{
FILE *output = fopen(filename.c_str(), "wb");
if(!output)
Expand Down Expand Up @@ -927,7 +927,7 @@ void ExtractDBCFiles(int locale, bool basicLocale)
string filename = path;
filename += (iter->c_str() + strlen("DBFilesClient\\"));

if(ExtractFile(locale, iter->c_str(), filename))
if(ExtractFile(iter->c_str(), filename))
++count;
}
printf("Extracted %u DBC files\n\n", count);
Expand Down
Binary file modified contrib/extractor/ad.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9166"
#define REVISION_NR "9167"
#endif // __REVISION_NR_H__

0 comments on commit 6f42488

Please sign in to comment.