mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
compilation error fix for windows
This commit is contained in:
parent
4c1dcb70bb
commit
b9a85c7dcd
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ PBD::get_microseconds ()
|
|||
|
||||
if (time_rate_usecs) {
|
||||
if (QueryPerformanceCounter (&time)) {
|
||||
return (microseconds_t) (current_val.QuadPart * timer_rate_us);
|
||||
return (microseconds_t) (time.QuadPart * timer_rate_us);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue