We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc8100 commit 0978c60Copy full SHA for 0978c60
src/dmxpp/dmxpp.cpp
@@ -154,7 +154,8 @@ bool DMX::openBinary(BufferStream& stream) {
154
auto size = reader.read<uint32_t>();
155
out.reserve(size);
156
for (int i = 0; i < size; i++) {
157
- out.push_back(std::get<T>(readValue(reader, Value::arrayIDToInnerID(type_), true)));
+ // String arrays are always inline.
158
+ out.push_back(std::get<T>(readValue(reader, Value::arrayIDToInnerID(type_), false)));
159
}
160
return out;
161
};
0 commit comments