From cf114871215e08f9743a3f72d99f1f251e2701bf Mon Sep 17 00:00:00 2001 From: Shakirul Hasan Date: Sun, 11 Nov 2018 23:39:24 +0600 Subject: [PATCH] Menu Font Size Change --- Scenes/menu.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scenes/menu.hpp b/Scenes/menu.hpp index e33789b..dafd4fc 100644 --- a/Scenes/menu.hpp +++ b/Scenes/menu.hpp @@ -17,10 +17,10 @@ void menu(RenderWindow &app){ Font AmaticB; AmaticB.loadFromFile("Resource/Fonts/Amatic-Bold.ttf"); - Text startGameText("StartGame", AmaticB, 50); - Text storyLineText("Storyline", AmaticB, 50); - Text addedLaterText("What\'ll be added later?", AmaticB, 50); - Text exitText("Exit", AmaticB, 50); + Text startGameText("StartGame", AmaticB, 60); + Text storyLineText("Storyline", AmaticB, 60); + Text addedLaterText("What\'ll be added later?", AmaticB, 60); + Text exitText("Exit", AmaticB, 60); startGameText.setOrigin(startGameText.getLocalBounds().width/2, startGameText.getLocalBounds().height/2); storyLineText.setOrigin(storyLineText.getLocalBounds().width/2, storyLineText.getLocalBounds().height/2);