Remove ride classifications

This commit is contained in:
Ted John
2019-08-03 18:11:30 +01:00
parent a3fe00f0a3
commit 414b53b56d
13 changed files with 118 additions and 203 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ TEST(MultiLaunchTest, all)
game_load_init();
// Check ride count to check load was successful
ASSERT_EQ(gRideCount, 134);
ASSERT_EQ(ride_get_count(), 134);
auto gs = context->GetGameState();
ASSERT_NE(gs, nullptr);
auto& date = gs->GetDate();
@@ -59,7 +59,7 @@ TEST(MultiLaunchTest, all)
ASSERT_EQ(date.GetMonthTicks(), 7862 + updatesToTest);
// Check ride count again
ASSERT_EQ(gRideCount, 134);
ASSERT_EQ(ride_get_count(), 134);
}
SUCCEED();
}