Browse Source

Fixed missing cast in win32 GL code.

tags/2021-05-28
jules 13 years ago
parent
commit
bb30a6da66
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_opengl/native/juce_OpenGL_win32.h

+ 1
- 1
modules/juce_opengl/native/juce_OpenGL_win32.h View File

@@ -68,7 +68,7 @@ public:
}
if (contextToShareWith != nullptr)
wglShareLists (contextToShareWith, renderContext);
wglShareLists ((HGLRC) contextToShareWith, renderContext);
component.getTopLevelComponent()->repaint();
component.repaint();


Loading…
Cancel
Save