mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 19:55:50 +00:00
pull in 90833d8
This commit is contained in:
parent
09293d7fcf
commit
b3cd9324d4
2 changed files with 10 additions and 1 deletions
|
@ -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]
|
||||
|
|
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue