Skip to content

Commit

Permalink
Merge pull request #38142 from ZhilkinSerg/fonts-remove-outdated
Browse files Browse the repository at this point in the history
Remove outdated fonts and set fallback font to unifont
  • Loading branch information
ZhilkinSerg authored Feb 18, 2020
2 parents f78a598 + c3e5467 commit e9f1cd7
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Binary file removed data/font/Square-Smallcaps.ttf
Binary file not shown.
Binary file removed data/font/fixedsys.ttf
Binary file not shown.
Binary file removed data/font/square.ttf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/sdltiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3885,7 +3885,7 @@ CachedTTFFont::CachedTTFFont( const int w, const int h, std::string typeface, in
//different default font with wincurse
if( !file_exist( typeface ) ) {
faceIndex = 0;
typeface = PATH_INFO::fontdir() + "fixedsys.ttf";
typeface = PATH_INFO::fontdir() + "unifont.ttf";
dbg( D_INFO ) << "Using fallback font [" + typeface + "] found in font dir.";
}
dbg( D_INFO ) << "Loading truetype font [" + typeface + "].";
Expand Down

0 comments on commit e9f1cd7

Please sign in to comment.