diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-10-09 15:56:07 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-10-09 15:56:07 +0200 |
| commit | 05384f581feada51b7da638ab83f7ccbbd8193c9 (patch) | |
| tree | 4c63552f97d69b2eb46fa3e99521fe536ceaa6ba /src/wrapped | |
| parent | 84f3c104b201e433c6f31a82211d8a646ca20c41 (diff) | |
| download | box64-05384f581feada51b7da638ab83f7ccbbd8193c9.tar.gz box64-05384f581feada51b7da638ab83f7ccbbd8193c9.zip | |
[BOX32] Improved again, X11 and XImage handling
Diffstat (limited to 'src/wrapped')
| -rw-r--r-- | src/wrapped/wrappedlibx11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibx11.c b/src/wrapped/wrappedlibx11.c index ed3ddc46..3c6d00c5 100644 --- a/src/wrapped/wrappedlibx11.c +++ b/src/wrapped/wrappedlibx11.c @@ -1555,7 +1555,7 @@ EXPORT void* my_XOpenDisplay(x64emu_t* emu, void* d) if(!ret) return ret; - if(box64_x11sync) my->XSynchronize(ret, 1); + if(box64_x11sync) {my->XSynchronize(ret, 1); printf_log(LOG_INFO, "Forcing Syncronized opration on Display %p\n", ret);} bridge_t* system = emu->context->system; #define GO(A, W)\ |