From 42d88749a06168feed462bf99a4d29367264f68c Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Sun, 29 Aug 2021 22:25:32 -0600 Subject: [PATCH] need extra cast --- src/fbinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fbinit.c b/src/fbinit.c index cf21cbd..61a8bb2 100644 --- a/src/fbinit.c +++ b/src/fbinit.c @@ -117,7 +117,7 @@ HRESULT Fb_setup(void) } /* The splash screen is in the system resources. Use the resource API to load it straight to the frame buffer. */ - hr2 = Rsrc_find_resource(NULL, "splash.bin", NULL, &splash); + hr2 = Rsrc_find_resource((HRESFILE)NULL, "splash.bin", NULL, &splash); if (SUCCEEDED(hr2)) { ASSERT(Rsrc_sizeof_resource(splash) == fixed.smem_len);