From 9579f2a385de42cf74d50038c79a58c14eb0d980 Mon Sep 17 00:00:00 2001
From: WBoerenkamps <wrj.boerenkamps@student.avans.nl>
Date: Sat, 14 Dec 2024 14:45:28 +0100
Subject: make format

---
 src/example/loadfont.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/example')

diff --git a/src/example/loadfont.cpp b/src/example/loadfont.cpp
index 6020908..dae64bc 100644
--- a/src/example/loadfont.cpp
+++ b/src/example/loadfont.cpp
@@ -14,13 +14,13 @@ int main() {
 	SDLContext sdl_context{mediator};
 	try {
 		// Correct way to create a unique pointer for Text
-		std::unique_ptr<Text> label
-			= std::make_unique<Text>(1, vec2(100, 100), vec2(0, 0), "test test", "OpenSymbol",Text::Data{});
+		std::unique_ptr<Text> label = std::make_unique<Text>(
+			1, vec2(100, 100), vec2(0, 0), "test test", "OpenSymbol", Text::Data{});
 		Asset asset = font_facade.get_font_asset(label->font_family);
 		std::cout << "path: " << asset.get_path() << std::endl;
 		std::unique_ptr<Font> font = std::make_unique<Font>(asset, mediator);
 		// Get the TTF_Font from the Font object
-		TTF_Font* ttf_font = font->get_font();
+		TTF_Font * ttf_font = font->get_font();
 		//example if the asset is not correct for font
 		//std::unique_ptr<Font> fontThrow = std::make_unique<Font>(Asset("../help.txt"), mediator);
 		// Check if the font is loaded properly
-- 
cgit v1.2.3