DEVTOOLS: Fix Compiler Warning in extract_mort tool.

This commit is contained in:
D G Turner 2018-10-07 05:31:46 +01:00
parent 7956c75e8e
commit fe654d2218

View file

@ -361,7 +361,7 @@ static void import_strings(const char *textFilename) {
// Set up a buffer for the output compressed strings
uint16 strData[BUFFER_SIZE];
memset(strData, 0, BUFFER_SIZE);
memset(strData, 0, BUFFER_SIZE*sizeof(uint16));
char sLine[BUFFER_SIZE];
int indis = 0;