From e3f91f7f6e7c5ff44232f1dadb7f17166bd85fd2 Mon Sep 17 00:00:00 2001 From: Attila Veghelyi Date: Mon, 24 Jul 2023 21:21:57 +0200 Subject: Remove deprecated function call --- op.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'op.c') diff --git a/op.c b/op.c index 766f8c0..bc28543 100644 --- a/op.c +++ b/op.c @@ -27,9 +27,7 @@ #include "fileIO.h" #include "progAVR.h" - #if !defined _WIN32 && !defined __CYGWIN__ -DWORD GetTickCount(); #include int kbhit() { @@ -888,9 +886,14 @@ void msDelay(double delay) /// /// Get system time DWORD GetTickCount(){ + struct timeval tv; + gettimeofday(&tv, NULL); + return tv.tv_sec*1000+tv.tv_usec/1000; +/* struct timeb now; ftime(&now); return now.time*1000+now.millitm; +*/ } #endif -- cgit v1.2.3-54-g00ecf