Add more descriptive error message

This commit is contained in:
stefnotch
2021-01-19 21:08:26 +01:00
committed by GitHub
parent c4e6d013c1
commit bd7a681700

View File

@@ -60,7 +60,7 @@ bool ValidateStep::Perform(CookingData& data)
AssetInfo info;
if (!Content::GetAssetInfo(GameSettings::FirstScene, info))
{
data.Error(TEXT("Missing first scene."));
data.Error(TEXT("Missing first scene. Set it in the game settings."));
return true;
}
}