Skip to content

Commit

Permalink
Fix warning in Pow3r test program. (#12637)
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 authored Nov 16, 2022
1 parent a52c0bc commit ce30071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pow3r/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private void Run(string[] args)

while (!GLFW.WindowShouldClose(_window.WindowPtr))
{
_window.ProcessEvents();
NativeWindow.ProcessWindowEvents(false);

var tickSpan = TimeSpan.FromSeconds(1f / _tps);
while (curTime - lastTick > tickSpan)
Expand Down

0 comments on commit ce30071

Please sign in to comment.