diff options
author | Lioncash <mathew1800@gmail.com> | 2020-11-18 05:12:42 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-11-18 05:12:44 +0100 |
commit | be4fc777c08a880e9024112dedcc290463fd215c (patch) | |
tree | d93a087679a13a9f06bd87bdccdc9b47ed7f317e | |
parent | Merge pull request #4866 from Morph1984/mjolnir-p3-prod (diff) | |
download | yuzu-be4fc777c08a880e9024112dedcc290463fd215c.tar yuzu-be4fc777c08a880e9024112dedcc290463fd215c.tar.gz yuzu-be4fc777c08a880e9024112dedcc290463fd215c.tar.bz2 yuzu-be4fc777c08a880e9024112dedcc290463fd215c.tar.lz yuzu-be4fc777c08a880e9024112dedcc290463fd215c.tar.xz yuzu-be4fc777c08a880e9024112dedcc290463fd215c.tar.zst yuzu-be4fc777c08a880e9024112dedcc290463fd215c.zip |
-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() { 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; |