Added support for Starsiege 2009 Closes #100 (v2.0.2)

This commit is contained in:
mmorrison 2019-01-13 00:01:55 -06:00
parent ad0be5a0bf
commit 9619449d77
6 changed files with 72 additions and 7 deletions

View file

@ -4,6 +4,7 @@ class HexUtil {
let hexLine = '';
let chrLine = '';
let out = '';
out += "Buffer length: " + buffer.length + " bytes\n";
for(let i = 0; i < buffer.length; i++) {
const sliced = buffer.slice(i,i+1);
hexLine += sliced.toString('hex')+' ';