From 74bb2fef2e20d743974f696579e00bab5d48ebd3 Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Mon, 5 Mar 2018 04:05:19 -0700 Subject: [PATCH] bam: Fix typo in ClipPlaneAttrib::fillin --- panda/src/pgraph/clipPlaneAttrib.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pgraph/clipPlaneAttrib.cxx b/panda/src/pgraph/clipPlaneAttrib.cxx index 2b45be735a..aca61c8bc9 100644 --- a/panda/src/pgraph/clipPlaneAttrib.cxx +++ b/panda/src/pgraph/clipPlaneAttrib.cxx @@ -1017,7 +1017,7 @@ fillin(DatagramIterator &scan, BamReader *manager) { _on_planes.resize(num_on_planes); if (manager->get_file_minor_ver() >= 40) { for (int i = 0; i < num_on_planes; i++) { - manager->read_pointer(scan); + _on_planes[i].fillin(scan, manager); } } else { manager->read_pointers(scan, num_on_planes);