Browse Source

engine: platform: make Platform_SetTimer static inline to not fix unused-function

master
Alibek Omarov 5 months ago
parent
commit
a7c422fde6
  1. 2
      engine/platform/platform.h

2
engine/platform/platform.h

@ -183,7 +183,7 @@ void Platform_SetClipboardText( const char *buffer ); @@ -183,7 +183,7 @@ void Platform_SetClipboardText( const char *buffer );
#define SDL_VERSION_ATLEAST( x, y, z ) 0
#endif
static void Platform_SetTimer( float time )
static inline void Platform_SetTimer( float time )
{
#if XASH_LINUX
Linux_SetTimer( time );

Loading…
Cancel
Save