diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 09:08:06 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 09:08:06 +0100 |
commit | 2f8d36a33854715828d412792663f355b9e393ae (patch) | |
tree | d7cd864f17f91965e80f2cde015b5a5d5e009ecc /src/crepe/facade/Font.cpp | |
parent | c0dc5f5d785cb4d0b0f5c05174c36fab9eef9cfb (diff) |
idk
Diffstat (limited to 'src/crepe/facade/Font.cpp')
-rw-r--r-- | src/crepe/facade/Font.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/crepe/facade/Font.cpp b/src/crepe/facade/Font.cpp index 83e8519..a9f1633 100644 --- a/src/crepe/facade/Font.cpp +++ b/src/crepe/facade/Font.cpp @@ -1,5 +1,6 @@ #include "../api/Config.h" #include "util/Log.h" +#include <iostream> #include "Font.h" @@ -10,7 +11,8 @@ Font::Font(const Asset & src, Mediator & mediator) : Resource(src, mediator) { dbg_trace(); Config & config = Config::get_instance(); - const std::string FONT_PATH = src.get_path(); + const std::string & FONT_PATH = src.get_path(); + cout << FONT_PATH.c_str() << endl; TTF_Font * font = TTF_OpenFont(FONT_PATH.c_str(), config.font.size); if (font == NULL) throw runtime_error(format("Font: {} (path: {})", TTF_GetError(), FONT_PATH)); |