Skip to content

Commit

Permalink
fix df
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-khrykov committed Aug 27, 2024
1 parent 8b15c49 commit 5c7c261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/resources/dynamic_font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Error DynamicFontAtSize::_load() {
#elif __APPLE__
int fontdata_size = 0;
unsigned char* fontdata = apple_get_font_data_for_font(system_font->get_apple_name().utf8().ptr(), &fontdata_size);
print_line("apple_get_font_data_for_font returned fontdata:" + itos(fontdata));
//print_line("apple_get_font_data_for_font returned fontdata:" + itos(fontdata));
print_line("apple_get_font_data_for_font returned fontdata_size:" + itos(fontdata_size));
system_font->_fontdata = Vector<uint8_t>();
system_font->_fontdata.resize(fontdata_size);
Expand Down

0 comments on commit 5c7c261

Please sign in to comment.