Skip to content
Snippets Groups Projects
Commit 7f476aaf authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix new build error introduced with GDI support

unresolved external symbol _try_gdi_init referenced in function initciolib

Function is dependent on WITH_GDI, not _WIN32
parent 24cb0a05
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4145 passed
......@@ -459,7 +459,7 @@ CIOLIBEXPORT int initciolib(int mode)
#ifndef NO_X
if(!try_x_init(mode))
#endif
#ifdef _WIN32
#if defined(WITH_GDI)
if (!try_gdi_init(mode))
#endif
#if defined(WITH_SDL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment