aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/Font.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-17 20:47:14 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-17 20:47:14 +0100
commit36f941aa1cdea5faeec20a0dc793e0538ccd6d15 (patch)
treef944b01ed0bb0d189e115f375cda8e3e7df5c17e /src/crepe/facade/Font.cpp
parent970159235e5f1a1dcb6a7f725e782374ced54d3b (diff)
implemented feedback
Diffstat (limited to 'src/crepe/facade/Font.cpp')
-rw-r--r--src/crepe/facade/Font.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/crepe/facade/Font.cpp b/src/crepe/facade/Font.cpp
index 0c670c1..771002f 100644
--- a/src/crepe/facade/Font.cpp
+++ b/src/crepe/facade/Font.cpp
@@ -2,7 +2,6 @@
#include "../api/Asset.h"
#include "../api/Config.h"
-#include <string>
#include "Font.h"
@@ -12,7 +11,6 @@ using namespace crepe;
Font::Font(const Asset & src, Mediator & mediator) : Resource(src, mediator) {
const Config & config = Config::get_instance();
const std::string FONT_PATH = src.get_path();
-
TTF_Font * loaded_font = TTF_OpenFont(FONT_PATH.c_str(), config.font.size);
if (loaded_font == NULL) {
throw runtime_error(format("Font: {} (path: {})", TTF_GetError(), FONT_PATH));