Skip to content
Snippets Groups Projects
Unverified Commit 8329b21b authored by Hanicef's avatar Hanicef
Browse files

Fix dummy build

parent 933a9601
No related branches found
No related tags found
2 merge requests!2355fix newer versions of mixerx,!2242Fix dummy build
#include "../doomdef.h" #include "../doomdef.h"
#include "../doomtype.h" #include "../doomtype.h"
#include "../i_system.h" #include "../i_system.h"
#include "../i_time.h"
FILE *logstream = NULL; FILE *logstream = NULL;
...@@ -19,6 +20,11 @@ void I_Sleep(UINT32 ms) ...@@ -19,6 +20,11 @@ void I_Sleep(UINT32 ms)
(void)ms; (void)ms;
} }
void I_SleepDuration(precise_t duration)
{
(void)duration;
}
precise_t I_GetPreciseTime(void) precise_t I_GetPreciseTime(void)
{ {
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment