diff options
| author | 2020-11-20 14:16:01 +0800 | |
|---|---|---|
| committer | 2020-11-20 14:16:01 +0800 | |
| commit | 715f0c3b0ccb027fb48707c28718d2b0fb62d234 (patch) | |
| tree | 2503ac6b1d5ff155237fce88dac1912030aef586 /src | |
| parent | Merge pull request #4950 from german77/RumbleStrenght (diff) | |
| parent | configure_input_player: Use static qualifier for IsProfileNameValid() (diff) | |
| download | yuzu-715f0c3b0ccb027fb48707c28718d2b0fb62d234.tar.gz yuzu-715f0c3b0ccb027fb48707c28718d2b0fb62d234.tar.xz yuzu-715f0c3b0ccb027fb48707c28718d2b0fb62d234.zip | |
Merge pull request #4941 from lioncash/config
configure_input_player: Use static qualifier for IsProfileNameValid()
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu/configuration/configure_input_player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_input_player.cpp b/src/yuzu/configuration/configure_input_player.cpp index 72640f5e7..56ab32a35 100644 --- a/src/yuzu/configuration/configure_input_player.cpp +++ b/src/yuzu/configuration/configure_input_player.cpp | |||
| @@ -1137,7 +1137,7 @@ void ConfigureInputPlayer::CreateProfile() { | |||
| 1137 | return; | 1137 | return; |
| 1138 | } | 1138 | } |
| 1139 | 1139 | ||
| 1140 | if (!profiles->IsProfileNameValid(profile_name.toStdString())) { | 1140 | if (!InputProfiles::IsProfileNameValid(profile_name.toStdString())) { |
| 1141 | QMessageBox::critical(this, tr("Create Input Profile"), | 1141 | QMessageBox::critical(this, tr("Create Input Profile"), |
| 1142 | tr("The given profile name is not valid!")); | 1142 | tr("The given profile name is not valid!")); |
| 1143 | return; | 1143 | return; |