Skip to content

Commit

Permalink
DEVTOOLS: Fix Compiler Warning in extract_mort tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Oct 7, 2018
1 parent 7956c75 commit fe654d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/extract_mort/extract_mort.cpp
Expand Up @@ -361,7 +361,7 @@ static void import_strings(const char *textFilename) {


// Set up a buffer for the output compressed strings // Set up a buffer for the output compressed strings
uint16 strData[BUFFER_SIZE]; uint16 strData[BUFFER_SIZE];
memset(strData, 0, BUFFER_SIZE); memset(strData, 0, BUFFER_SIZE*sizeof(uint16));
char sLine[BUFFER_SIZE]; char sLine[BUFFER_SIZE];


int indis = 0; int indis = 0;
Expand Down

0 comments on commit fe654d2

Please sign in to comment.