Skip to content

Commit

Permalink
Fix Windows blastem build
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Oct 15, 2024
1 parent 5547cd3 commit 8e8db32
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions emulator-patches/fetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@

#if defined(__EMSCRIPTEN__)
# include <emscripten/fetch.h>
#elif defined(_WIN32) || defined(__MINGW32__)
# include <windows.h>
#else
# include <curl/curl.h>
# include <pthread.h>
# if defined(_WIN32) || defined(__MINGW32__)
# include <windows.h>
# else
# include <pthread.h>
# endif
#endif

#include <stdint.h>
Expand Down

0 comments on commit 8e8db32

Please sign in to comment.