Skip to content

Commit

Permalink
don't merge, this is to test something for #877
Browse files Browse the repository at this point in the history
  • Loading branch information
barbeque-squared committed Jul 28, 2024
1 parent e3c1b81 commit 8cdc049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/base/TextGL.pas
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ procedure LoadFontFamilyNames;
SetLength(FontFamilyNames, 0);
for FontNameIndex := 0 to FontSections.Count-1 do
begin
//if (Sections[FontNameIndex].StartsWith('Font_')) then // .StartsWith() does not compile on Travis-CI
if (LeftStr(FontSections[FontNameIndex], 5) = 'Font_') then
if (FontSections[FontNameIndex].StartsWith('Font_')) then // .StartsWith() does not compile on Travis-CI
//if (LeftStr(FontSections[FontNameIndex], 5) = 'Font_') then
begin
SetLength(FontFamilyNames, Length(FontFamilyNames) + 1);
//FontFamilyNames[FontNameIndex] := FontIni.ReadString(Sections[FontNameIndex], 'Name', Sections[FontNameIndex].Remove(0, 5)); // .Remove() does not compile on Travis-CI
Expand Down

0 comments on commit 8cdc049

Please sign in to comment.