aboutsummaryrefslogtreecommitdiff
path: root/src/debug/hexutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/hexutil.h')
-rw-r--r--src/debug/hexutil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/debug/hexutil.h b/src/debug/hexutil.h
index 9eb4ad2..63d1deb 100644
--- a/src/debug/hexutil.h
+++ b/src/debug/hexutil.h
@@ -9,6 +9,8 @@ extern "C"
#include <stdint.h>
+namespace melonDS
+{
inline static uint8_t hex2nyb(uint8_t v)
{
if (v >= '0' && v <= '9') return v - '0';
@@ -71,5 +73,6 @@ inline static uint32_t unhex32(const uint8_t* src)
}
#endif
+}
#endif