diff options
| author | Andre Weissflog <floooh@gmail.com> | 2021-02-10 22:59:27 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2021-02-10 22:59:27 +0100 |
| commit | d4e3b560c3e4c48b2af2b2386eda26899707fc2f (patch) | |
| tree | 96ff2cbd74bc96a909d34ead7a6f09fda8453c28 | |
| parent | 8c098017b29dbdad44856b457cb05ebd86db118b (diff) | |
sokol_gfx.h: fix VS2015 warning supression
| -rw-r--r-- | sokol_gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_gfx.h b/sokol_gfx.h index 1328626c..d85de83f 100644 --- a/sokol_gfx.h +++ b/sokol_gfx.h @@ -2502,7 +2502,7 @@ inline int sg_append_buffer(sg_buffer buf_id, const sg_range& data) { return sg_ #pragma warning(disable:4115) /* named type definition in parentheses */ #pragma warning(disable:4505) /* unreferenced local function has been removed */ #pragma warning(disable:4201) /* nonstandard extension used: nameless struct/union (needed by d3d11.h) */ -#pragma warning(disable:4054) /* 'type cast': from function pointer 'FARPROC' to data pointer 'void *' */ +#pragma warning(disable:4055) /* 'type cast': from function pointer 'FARPROC' to data pointer 'void *' */ #endif #if defined(SOKOL_GLCORE33) || defined(SOKOL_GLES2) || defined(SOKOL_GLES3) |