diff --git a/test/tests/MultiLaunch.cpp b/test/tests/MultiLaunch.cpp index 8adb070d33..5d6f067b61 100644 --- a/test/tests/MultiLaunch.cpp +++ b/test/tests/MultiLaunch.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include "TestData.h" extern "C" @@ -29,7 +30,11 @@ TEST(MultiLaunchTest, all) bool initialised = context->Initialise(); ASSERT_TRUE(initialised); - game_load_sv6_path(path.c_str()); + ParkLoadResult * plr = game_load_sv6_path(path.c_str()); + + ASSERT_EQ(ParkLoadResult_GetError(plr), PARK_LOAD_ERROR_OK); + ParkLoadResult_Delete(plr); + game_load_init(); // Check ride count to check load was successful