Skip to content

Commit

Permalink
engine: platform: sys_win: fixed compiling error
Browse files Browse the repository at this point in the history
  • Loading branch information
SNMetamorph authored and a1batross committed Feb 15, 2025
1 parent 7ba2209 commit 2465782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/platform/win32/sys_win.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ qboolean Win32_NanoSleep( int nsec )
if( !g_waitable_timer )
return false;

ts.QuadPart = { -nsec / 100 };
ts.QuadPart = -nsec / 100;

if( !SetWaitableTimer( g_waitable_timer, &ts, 0, NULL, NULL, FALSE ))
{
Expand Down

0 comments on commit 2465782

Please # to comment.