TOOLS: Remove superflous pointer dereference in create_kyradat.

svn-id: r54183
This commit is contained in:
Johannes Schickel 2010-11-10 03:59:43 +00:00
parent 66b172bb26
commit c9969d2be0

View File

@ -881,7 +881,7 @@ bool extractRaw16to8(PAKFile &out, const ExtractInformation *info, const byte *d
for (int i = 0; i < outsize; i++) {
*dst++ = *src++;
*src++;
src++;
}
return out.addFile(filename, buffer, outsize);