summaryrefslogtreecommitdiffstats
path: root/src/NBT/ByteArrayTag.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/NBT/ByteArrayTag.hpp')
-rw-r--r--src/NBT/ByteArrayTag.hpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/NBT/ByteArrayTag.hpp b/src/NBT/ByteArrayTag.hpp
index 4f2d331..0e56a9a 100644
--- a/src/NBT/ByteArrayTag.hpp
+++ b/src/NBT/ByteArrayTag.hpp
@@ -55,15 +55,8 @@ public:
return len;
}
- const uint8_t & get(size_t i) const {
- return value[i];
- }
-
- uint8_t getHalf(size_t i) const {
- if (i % 2)
- return (value[i/2] >> 4);
- else
- return (value[i/2] & 0xf);
+ const uint8_t * getValue() const {
+ return value;
}
};