diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-03-06 17:21:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 17:21:06 +0100 |
commit | 3bd29fb66b1176803e029e6ab3b0a38916a6031b (patch) | |
tree | f551fa28edd08f9e7ccca2c361200ab1a4a413d4 | |
parent | Merge pull request #9786 from FernandoS27/the-gaia-is-a-lie (diff) | |
parent | fix typo in settings.h (diff) | |
download | yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.tar yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.tar.gz yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.tar.bz2 yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.tar.lz yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.tar.xz yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.tar.zst yuzu-3bd29fb66b1176803e029e6ab3b0a38916a6031b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/settings.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 512ecff69..1ae28ce93 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -128,7 +128,7 @@ public: /** * Sets a default value, label, and setting value. * - * @param default_val Intial value of the setting, and default value of the setting + * @param default_val Initial value of the setting, and default value of the setting * @param name Label for the setting */ explicit Setting(const Type& default_val, const std::string& name) @@ -139,7 +139,7 @@ public: /** * Sets a default value, minimum value, maximum value, and label. * - * @param default_val Intial value of the setting, and default value of the setting + * @param default_val Initial value of the setting, and default value of the setting * @param min_val Sets the minimum allowed value of the setting * @param max_val Sets the maximum allowed value of the setting * @param name Label for the setting @@ -231,7 +231,7 @@ public: /** * Sets a default value, label, and setting value. * - * @param default_val Intial value of the setting, and default value of the setting + * @param default_val Initial value of the setting, and default value of the setting * @param name Label for the setting */ explicit SwitchableSetting(const Type& default_val, const std::string& name) @@ -242,7 +242,7 @@ public: /** * Sets a default value, minimum value, maximum value, and label. * - * @param default_val Intial value of the setting, and default value of the setting + * @param default_val Initial value of the setting, and default value of the setting * @param min_val Sets the minimum allowed value of the setting * @param max_val Sets the maximum allowed value of the setting * @param name Label for the setting |