Browse Source

Fixed spelling errors (#5714)

Corrected a spelling error in the "Show Item Graphics in Stores" description
(desription -> description)
pull/5718/head
Bubio 3 years ago committed by GitHub
parent
commit
81c7d0618d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Source/options.cpp
  2. 2
      Source/options.h

2
Source/options.cpp

@ -939,7 +939,7 @@ GraphicsOptions::GraphicsOptions()
#endif
, limitFPS("FPS Limiter", OptionEntryFlags::None, N_("FPS Limiter"), N_("FPS is limited to avoid high CPU load. Limit considers refresh rate."), true)
, showFPS("Show FPS", OptionEntryFlags::None, N_("Show FPS"), N_("Displays the FPS in the upper left corner of the screen."), false)
, showItemGraphicsInStores("Show Item Graphics in Stores", OptionEntryFlags::None, N_("Show Item Graphics in Stores"), N_("Show item graphics to the left of item desriptions in store menus."), false)
, showItemGraphicsInStores("Show Item Graphics in Stores", OptionEntryFlags::None, N_("Show Item Graphics in Stores"), N_("Show item graphics to the left of item descriptions in store menus."), false)
, showHealthValues("Show health values", OptionEntryFlags::None, N_("Show health values"), N_("Displays current / max health value on health globe."), false)
, showManaValues("Show mana values", OptionEntryFlags::None, N_("Show mana values"), N_("Displays current / max mana value on mana globe."), false)
{

2
Source/options.h

@ -505,7 +505,7 @@ struct GraphicsOptions : OptionCategoryBase {
#endif
/** @brief Enable FPS Limiter. */
OptionEntryBoolean limitFPS;
/** @brief Show item graphics to the left of item desriptions in store menus. */
/** @brief Show item graphics to the left of item descriptions in store menus. */
OptionEntryBoolean showItemGraphicsInStores;
/** @brief Show FPS, even without the -f command line flag. */
OptionEntryBoolean showFPS;

Loading…
Cancel
Save