diff options
author | 2025-01-10 22:36:13 +0100 | |
---|---|---|
committer | 2025-01-10 22:36:42 +0100 | |
commit | b35397e8a97388b23ed41cced19e5c16be5ef93e (patch) | |
tree | 9b825ef5569f1da3cc722c22484f20a40155956f /3rdparty | |
parent | 4b81950976abfeae5a370970de712aa581af2ec5 (diff) |
bgfx: fix compile error after https://github.com/mamedev/mame/commit/ba6f5853e9382a959af8ff81980c0f06a6ffe80e
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/bgfx/src/glcontext_html5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/bgfx/src/glcontext_html5.cpp b/3rdparty/bgfx/src/glcontext_html5.cpp index 0e55b792deb..cce0f299da8 100644 --- a/3rdparty/bgfx/src/glcontext_html5.cpp +++ b/3rdparty/bgfx/src/glcontext_html5.cpp @@ -86,7 +86,7 @@ namespace bgfx { namespace gl } else { - m_primary = createSwapChain((void*)canvas, (int)_width, (int)_height) ); + m_primary = createSwapChain((void*)canvas, (int)_width, (int)_height); } if (0 != _width |