diff --git a/source/backend/ToastCore.hx b/source/backend/ToastCore.hx index 076b205..c87ce82 100644 --- a/source/backend/ToastCore.hx +++ b/source/backend/ToastCore.hx @@ -154,7 +154,7 @@ class Toast extends Sprite { title = new TextField(); title.text = titleText; - title.setTextFormat(new TextFormat(Paths.font("vcr.ttf"), 24, titleColor, true)); + title.setTextFormat(new TextFormat(Paths.font("main.ttf"), 24, titleColor, true)); title.wordWrap = true; title.width = 360; title.y = 5; @@ -163,7 +163,7 @@ class Toast extends Sprite { desc = new TextField(); desc.text = description; - desc.setTextFormat(new TextFormat(Paths.font("vcr.ttf"), 18, 0xFFFFFF)); + desc.setTextFormat(new TextFormat(Paths.font("main.ttf"), 18, 0xFFFFFF)); desc.wordWrap = true; desc.width = 360; desc.height = 95; diff --git a/source/options/OptionsState.hx b/source/options/OptionsState.hx index 309b4c5..0710056 100644 --- a/source/options/OptionsState.hx +++ b/source/options/OptionsState.hx @@ -35,8 +35,8 @@ class OptionsState extends ExtendableState { opGrp.add(text); } - var resetControlsTxt:FlxText = new FlxText(5, FlxG.height - 24, 0, Localization.get("ctrlResetGuide"), 12); - resetControlsTxt.setFormat(Paths.font('main.ttf'), 18, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); + var resetControlsTxt:FlxText = new FlxText(5, FlxG.height - 30, 0, Localization.get("ctrlResetGuide"), 12); + resetControlsTxt.setFormat(Paths.font('main.ttf'), 26, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); resetControlsTxt.scrollFactor.set(); add(resetControlsTxt); diff --git a/source/states/MenuState.hx b/source/states/MenuState.hx index 93f2e53..9f76473 100644 --- a/source/states/MenuState.hx +++ b/source/states/MenuState.hx @@ -86,9 +86,9 @@ class MenuState extends ExtendableState { grpSelection.add(menuItem); } - final versii:FlxText = new FlxText(5, FlxG.height - 24, 0, 'Rhythmo v${Lib.application.meta.get('version')}' + final versii:FlxText = new FlxText(5, FlxG.height - 30, 0, 'Rhythmo v${Lib.application.meta.get('version')}' #if debug + ' (${MacrosUtil.getCommitId()})' #end, 12); - versii.setFormat(Paths.font('main.ttf'), 18, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); + versii.setFormat(Paths.font('main.ttf'), 26, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK); versii.scrollFactor.set(); add(versii);