diff options
| author | 2023-07-18 15:42:59 -0400 | |
|---|---|---|
| committer | 2023-07-21 10:56:55 -0400 | |
| commit | 1e093767a85ee0fdce6f1619e967a6560963dcf3 (patch) | |
| tree | 41908aa9f566a587fedc6053ebda9b5798ecee28 /src/common/settings_common.cpp | |
| parent | settings: Cleanup (diff) | |
| download | yuzu-1e093767a85ee0fdce6f1619e967a6560963dcf3.tar.gz yuzu-1e093767a85ee0fdce6f1619e967a6560963dcf3.tar.xz yuzu-1e093767a85ee0fdce6f1619e967a6560963dcf3.zip | |
common,configure_system: Rename method to GetCategory
Fixes essentially a shadowing issue.
Diffstat (limited to 'src/common/settings_common.cpp')
| -rw-r--r-- | src/common/settings_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp index 799942980..8b666f8b2 100644 --- a/src/common/settings_common.cpp +++ b/src/common/settings_common.cpp | |||
| @@ -36,7 +36,7 @@ bool BasicSetting::RuntimeModfiable() const { | |||
| 36 | return runtime_modifiable; | 36 | return runtime_modifiable; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | Category BasicSetting::Category() const { | 39 | Category BasicSetting::GetCategory() const { |
| 40 | return category; | 40 | return category; |
| 41 | } | 41 | } |
| 42 | 42 | ||