From 8556a741969f6e6e8890fbe6429a3e1ee8bd6780 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 6 Sep 2019 08:42:33 -0400 Subject: [PATCH] WPSC: Correct typo within WPSM's _read() function This should be calling read() on xunk_SPS1, not xunk_SPS2 --- DataSpec/DNACommon/WPSC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataSpec/DNACommon/WPSC.cpp b/DataSpec/DNACommon/WPSC.cpp index 02a0b4bfe..d3726cb15 100644 --- a/DataSpec/DNACommon/WPSC.cpp +++ b/DataSpec/DNACommon/WPSC.cpp @@ -113,7 +113,7 @@ void WPSM::_read(athena::io::YAMLDocReader& r) { xunk_FC60.read(r); break; case SBIG('SPS1'): - xunk_SPS2.read(r); + xunk_SPS1.read(r); break; case SBIG('SPS2'): xunk_SPS2.read(r);