diff --git a/src/util/util_time.h b/src/util/util_time.h index 3eca03bb..cbadfa5d 100644 --- a/src/util/util_time.h +++ b/src/util/util_time.h @@ -3,13 +3,13 @@ #include #include -#ifdef _WIN32 +#if defined(_WIN32) && !defined(__WINE__) #include #endif namespace dxvk { -#ifdef _WIN32 +#if defined(_WIN32) && !defined(__WINE__) struct high_resolution_clock { static constexpr bool is_steady = true; @@ -44,7 +44,7 @@ namespace dxvk { } }; #else - using clock = std::chrono::high_resolution_clock; + using high_resolution_clock = std::chrono::high_resolution_clock; #endif } \ No newline at end of file