mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-09-27 15:27:05 +00:00
Corrected malformed formatting in GameWindow.
This commit is contained in:
parent
4f60f95607
commit
2ffc67b8ae
|
@ -853,15 +853,22 @@ namespace OpenTK
|
||||||
OnLoad(e);
|
OnLoad(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnRenderFrameInternal(FrameEventArgs e) { if (Exists && !isExiting)
|
private void OnRenderFrameInternal(FrameEventArgs e)
|
||||||
|
{
|
||||||
|
if (Exists && !isExiting)
|
||||||
{
|
{
|
||||||
OnRenderFrame(e);
|
OnRenderFrame(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnUnloadInternal(EventArgs e) { OnUnload(e); }
|
private void OnUnloadInternal(EventArgs e)
|
||||||
|
{
|
||||||
|
OnUnload(e);
|
||||||
|
}
|
||||||
|
|
||||||
private void OnUpdateFrameInternal(FrameEventArgs e) { if (Exists && !isExiting)
|
private void OnUpdateFrameInternal(FrameEventArgs e)
|
||||||
|
{
|
||||||
|
if (Exists && !isExiting)
|
||||||
{
|
{
|
||||||
OnUpdateFrame(e);
|
OnUpdateFrame(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue