From 462ef617ce2b6ced2924773abdc225881f84a23d Mon Sep 17 00:00:00 2001 From: scrawl Date: Fri, 4 Dec 2015 00:18:54 +0100 Subject: [PATCH] Don't read forward/backward values for Quaternion key lists https://forum.openmw.org/viewtopic.php?f=8&t=3201&p=35867#p35867 --- components/nif/nifkey.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/nif/nifkey.hpp b/components/nif/nifkey.hpp index 682baed05..75353044d 100644 --- a/components/nif/nifkey.hpp +++ b/components/nif/nifkey.hpp @@ -138,6 +138,11 @@ private: /*key.mBackwardValue = */(nif.*getValue)(); } + static void readQuadratic(NIFStream &nif, KeyT &key) + { + readValue(nif, key); + } + static void readTBC(NIFStream &nif, KeyT &key) { readValue(nif, key);