WPSC: Correct typo within WPSM's _read() function

This should be calling read() on xunk_SPS1, not xunk_SPS2
This commit is contained in:
Lioncash 2019-09-06 08:42:33 -04:00
parent fea7984f71
commit 8556a74196
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ void WPSM<IDType>::_read(athena::io::YAMLDocReader& r) {
xunk_FC60.read(r); xunk_FC60.read(r);
break; break;
case SBIG('SPS1'): case SBIG('SPS1'):
xunk_SPS2.read(r); xunk_SPS1.read(r);
break; break;
case SBIG('SPS2'): case SBIG('SPS2'):
xunk_SPS2.read(r); xunk_SPS2.read(r);