Skip to content

Commit

Permalink
remove pointless _() function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Narre committed Jul 11, 2024
1 parent 23d0a67 commit 0bc8646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/supertux/menu/addon_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ AddonMenu::rebuild_menu()
{
const Addon& addon = m_addon_manager.get_installed_addon(m_installed_addons[index]);
const std::string text = addon_string_util::generate_menu_item_text(addon);
add_entry(MAKE_INSTALLED_MENU_ID(index), fmt::format(fmt::runtime(_("{}{}")), text, !addon.is_enabled() ? (" " + _("[DISABLED]")) : ""));
add_entry(MAKE_INSTALLED_MENU_ID(index), fmt::format(fmt::runtime("{}{}"), text, !addon.is_enabled() ? (" " + _("[DISABLED]")) : ""));
}

add_hl();
Expand Down

0 comments on commit 0bc8646

Please sign in to comment.