Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
Fixes #48.
  • Loading branch information
xdelatour authored and mikrosk committed Oct 18, 2023
1 parent e242d3c commit c19b1b0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fvdi/engine/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -1238,9 +1238,10 @@ static void load_font_dir(Virtual *vwk, char *fonts)
/* It's assumed that a device has been initialized (driver exists) */
if (insert_font(&vwk->real_address->writing.first_font, new_font))
vwk->real_address->writing.fonts++;
}
else
} else
{
PRINTF(("!!!failed\n"));
}
}
error = Fsnext();
}
Expand Down

0 comments on commit c19b1b0

Please sign in to comment.