This commit is contained in:
Branimir Karadžić
2017-11-15 12:32:50 -08:00
parent e41f2d445a
commit 9d9464f756
2 changed files with 2 additions and 2 deletions

View File

@@ -18,6 +18,7 @@
#include "os.cpp"
#include "process.cpp"
#include "semaphore.cpp"
#include "settings.cpp"
#include "sort.cpp"
#include "string.cpp"
#include "thread.cpp"

View File

@@ -59,7 +59,7 @@ public:
ascii[asciiPos] = '\0';
bx::writePrintf(m_writer, "\t" HEX_DUMP_FORMAT "// %s\n", hex, ascii);
data += asciiPos;
hexPos = 0;
hexPos = 0;
asciiPos = 0;
}
}
@@ -80,7 +80,6 @@ public:
}
bx::WriterI* m_writer;
std::string m_filePath;
std::string m_name;
typedef std::vector<uint8_t> Buffer;
Buffer m_buffer;