From 9bc838bade67437c1d68541f6a6c2320bb1edcbb Mon Sep 17 00:00:00 2001 From: William Kendrick Date: Sun, 7 Jun 2009 04:33:41 +0000 Subject: [PATCH] Added missing arg to load_user_fonts() (should get Win32 to build). --- src/tuxpaint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 732e58db4..34229d7aa 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -6135,7 +6135,7 @@ static void load_stamps(SDL_Surface * screen) #ifndef FORKED_FONTS static int load_user_fonts_stub(void *vp) { - return load_user_fonts(screen, vp); + return load_user_fonts(screen, vp, NULL); } #endif