Browse Source
Merge pull request #4941 from lioncash/config
configure_input_player: Use static qualifier for IsProfileNameValid()
pull/15/merge
Morph
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/configuration/configure_input_player.cpp
|
|
|
@ -1137,7 +1137,7 @@ void ConfigureInputPlayer::CreateProfile() { |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
if (!profiles->IsProfileNameValid(profile_name.toStdString())) { |
|
|
|
if (!InputProfiles::IsProfileNameValid(profile_name.toStdString())) { |
|
|
|
QMessageBox::critical(this, tr("Create Input Profile"), |
|
|
|
tr("The given profile name is not valid!")); |
|
|
|
return; |
|
|
|
|