Commit b3fada69 authored by Jon Siwek's avatar Jon Siwek

Fix typo in a deserializer::read method.

parent f835f5be
...@@ -86,7 +86,7 @@ class deserializer { ...@@ -86,7 +86,7 @@ class deserializer {
template <class T> template <class T>
inline T read(const uniform_type_info* uti) { inline T read(const uniform_type_info* uti) {
T result; T result;
uti->deserialize(&result, uti); uti->deserialize(&result, this);
return result; return result;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment