diff --git a/osu.Game/Graphics/OsuFont.cs b/osu.Game/Graphics/OsuFont.cs
index 076cc241ed..7c78141b4d 100644
--- a/osu.Game/Graphics/OsuFont.cs
+++ b/osu.Game/Graphics/OsuFont.cs
@@ -31,7 +31,14 @@ namespace osu.Game.Graphics
/// Whether all characters should be spaced the same distance apart.
/// The .
public static FontUsage GetFont(Typeface typeface = Typeface.Torus, float size = DEFAULT_FONT_SIZE, FontWeight weight = FontWeight.Medium, bool italics = false, bool fixedWidth = false)
- => new FontUsage(GetFamilyString(typeface), size, GetWeightString(typeface, weight), italics, fixedWidth);
+ => new FontUsage(GetFamilyString(typeface), size, GetWeightString(typeface, weight), getItalics(italics), fixedWidth);
+
+ private static bool getItalics(in bool italicsRequested)
+ {
+ // right now none of our fonts support italics.
+ // should add exceptions to this rule if they come up.
+ return false;
+ }
///
/// Retrieves the string representation of a .