mirror of https://gitlab.com/nakst/essence
compiler error fix
This commit is contained in:
parent
b3d2028aa4
commit
2e6fa61f9d
|
@ -430,7 +430,8 @@ void Build(int optimise, bool compile) {
|
|||
(double) (endTime.tv_sec - startTime.tv_sec) + (double) (endTime.tv_nsec - startTime.tv_nsec) / 1000000000);
|
||||
}
|
||||
|
||||
void *TimeoutThread(void *) {
|
||||
void *TimeoutThread(void *_unused) {
|
||||
(void) _unused;
|
||||
emulatorDidTimeout = false;
|
||||
|
||||
struct timespec endTime;
|
||||
|
|
Loading…
Reference in New Issue