aboutsummaryrefslogtreecommitdiff
path: root/src/reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/reader.cpp')
-rw-r--r--src/reader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reader.cpp b/src/reader.cpp
index 59b30c0..57c474b 100644
--- a/src/reader.cpp
+++ b/src/reader.cpp
@@ -54,10 +54,10 @@ template<> uint32_t Reader::readData<uint32_t>()
for(int i = 0; i < 4; i++)
{
uint8_t byte = readByte();
- DEBUG(std::cout << std::hex << 0+byte << " ");
+ debug(std::cout << std::hex << 0+byte << " ");
num += byte << (8 * (3-i));
}
- DEBUG(std::cout << std::dec << std::endl);
+ debug(std::cout << std::dec << std::endl);
return num;
}