Skip to content
Snippets Groups Projects
Commit 99b915af authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Add threadwrap to conio.h, fix typo

Hopefully nothing still builds conio as single-threaded anymore.
parent 743b2ae0
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4126 passed
...@@ -877,7 +877,7 @@ bitmap_vmem_puttext(int sx, int sy, int ex, int ey, struct vmem_cell *fill) ...@@ -877,7 +877,7 @@ bitmap_vmem_puttext(int sx, int sy, int ex, int ey, struct vmem_cell *fill)
pthread_mutex_lock(&vstatlock); pthread_mutex_lock(&vstatlock);
ret = bitmap_vmem_puttext_locked(sx, sy, ex, ey, fill); ret = bitmap_vmem_puttext_locked(sx, sy, ex, ey, fill);
pthread_mutex_lock(&vstatlock); pthread_mutex_unlock(&vstatlock);
return ret; return ret;
} }
......
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#if defined(__DARWIN__) #if defined(__DARWIN__)
#include <semwrap.h> #include <semwrap.h>
#endif #endif
#include "threadwrap.h"
#include "gen_defs.h" #include "gen_defs.h"
#include "utf8_codepages.h" #include "utf8_codepages.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment