diff --git a/Source/options.cpp b/Source/options.cpp index c85bc4a30..6e4ff0442 100644 --- a/Source/options.cpp +++ b/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) { diff --git a/Source/options.h b/Source/options.h index dd14b406d..8f770ffd7 100644 --- a/Source/options.h +++ b/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;