aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/util.cpp14
-rw-r--r--common/util.h2
2 files changed, 13 insertions, 3 deletions
diff --git a/common/util.cpp b/common/util.cpp
index a1ccbc6d70..1dc9855c6c 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -102,9 +102,14 @@ void hexdump(const byte * data, int len, int bytes_per_line) {
assert(1 <= bytes_per_line && bytes_per_line <= 32);
int i;
byte c;
+ int offset = 0;
while (len >= bytes_per_line) {
- for (i = 0; i < bytes_per_line; i++)
+ printf("%06x: ", offset);
+ for (i = 0; i < bytes_per_line; i++) {
printf("%02x ", data[i]);
+ if (i % 4 == 3)
+ printf(" ");
+ }
printf(" |");
for (i = 0; i < bytes_per_line; i++) {
c = data[i];
@@ -115,13 +120,18 @@ void hexdump(const byte * data, int len, int bytes_per_line) {
printf("|\n");
data += bytes_per_line;
len -= bytes_per_line;
+ offset += bytes_per_line;
}
if (len <= 0)
return;
- for (i = 0; i < len; i++)
+ printf("%06x: ", offset);
+ for (i = 0; i < len; i++) {
printf("%02x ", data[i]);
+ if (i % 4 == 3)
+ printf(" ");
+ }
for (; i < bytes_per_line; i++)
printf(" ");
printf(" |");
diff --git a/common/util.h b/common/util.h
index 9fc73acdcb..7123a8e4a1 100644
--- a/common/util.h
+++ b/common/util.h
@@ -45,7 +45,7 @@ void ClearBlendCache(byte *palette, int weight);
/*
* Print hexdump of the data passed in
*/
-void hexdump(const byte * data, int len, int bytes_per_line = 8);
+void hexdump(const byte * data, int len, int bytes_per_line = 16);
class RandomSource {
private: