From d1967827ca4c0f53ffb4143f0420d3027dd1283b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 26 Jun 2021 18:35:14 -0600 Subject: [PATCH] compilation error fix for windows --- libs/pbd/microseconds.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/microseconds.cc b/libs/pbd/microseconds.cc index 721f22fbbc..a068975399 100644 --- a/libs/pbd/microseconds.cc +++ b/libs/pbd/microseconds.cc @@ -52,7 +52,7 @@ PBD::get_microseconds () #ifdef PLATFORM_WINDOWS LARGE_INTEGER time; - if (time_rate_usecs) { + if (timer_rate_usecs) { if (QueryPerformanceCounter (&time)) { return (microseconds_t) (time.QuadPart * timer_rate_us); }