pull in 90833d8

This commit is contained in:
R2DLiu 2020-07-25 17:25:33 -04:00
commit b3cd9324d4
2 changed files with 10 additions and 1 deletions

View file

@ -11,7 +11,7 @@ FastDiscSpeed = True
$Required: General Codes
$Required: Slippi Recording
$Required: Slippi Online
$Recommended: Normal Lag Reduction
#$Recommended: Normal Lag Reduction
$Recommended: Polling drift fix + VB
[Gecko]

View file

@ -243,6 +243,15 @@ bool BootCore(std::unique_ptr<BootParameters> boot, const WindowSystemInfo& wsi)
if (!StartUp.SetPathsAndGameMetadata(*boot))
return false;
// Block running anything other than Melee and homebrew
if (!StartUp.GetGameID().empty() && StartUp.LoadDefaultGameIni().GetSections().empty())
{
PanicAlertT("This does not seem to be a copy of Super Smash Bros. Melee. "
"Please use regular Dolphin (https://dolphin-emu.org/) for running "
"games other than Super Smash Bros. Melee.");
return false;
}
// Load game specific settings
if (!std::holds_alternative<BootParameters::IPL>(boot->parameters))
{