From fc9ae687a1aa2918ae070cb6177f98c0a427b0de Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 6 Oct 2021 23:41:36 +0200 Subject: [PATCH] Fixed video.h. --- src/include/86box/video.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/86box/video.h b/src/include/86box/video.h index dc41a7e5c..63f854fb9 100644 --- a/src/include/86box/video.h +++ b/src/include/86box/video.h @@ -138,7 +138,7 @@ extern void video_screenshot(uint32_t *buf, int start_x, int start_y, int row_le #ifdef _WIN32 extern void * __cdecl (*video_copy)(void *_Dst, const void *_Src, size_t _Size); extern void * __cdecl video_transform_copy(void *_Dst, const void *_Src, size_t _Size); -#ele +#else extern void * (*video_copy)(void *__restrict _Dst, const void *__restrict _Src, size_t _Size); extern void * video_transform_copy(void *__restrict _Dst, const void *__restrict _Src, size_t _Size); #endif