Skip to content
Permalink
Browse files

TITANIC: Fix loading of CStarPoints2 data

  • Loading branch information
dreammaster committed Mar 27, 2017
1 parent 96e7bb6 commit aaa25279e56670cf7330772b185b4c8313a757cf
Showing with 1 addition and 1 deletion.
  1. +1 −1 engines/titanic/star_control/star_points2.cpp
@@ -42,7 +42,7 @@ bool CStarPoints2::initialize() {
// Read in the sub-entries
RootEntry &rootEntry = _data[rootCtr];
rootEntry.resize(count);
for (int idx = 0; idx < count * 2; ++idx) {
for (int idx = 0; idx < count; ++idx) {
CStarPointEntry &se = rootEntry[idx];
FVector *vectors[2] = { &se._v1, &se._v2 };

0 comments on commit aaa2527

Please sign in to comment.
You can’t perform that action at this time.