From 3032af19f2dd9b9fb0558735c9654901f0f9a2d8 Mon Sep 17 00:00:00 2001 From: Devin Anderson Date: Fri, 22 Apr 2011 01:32:22 -0700 Subject: [PATCH] WinMME: Correct silly error. --- windows/winmme/JackWinMMEOutputPort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/winmme/JackWinMMEOutputPort.cpp b/windows/winmme/JackWinMMEOutputPort.cpp index 7f174bec..ea903fa7 100644 --- a/windows/winmme/JackWinMMEOutputPort.cpp +++ b/windows/winmme/JackWinMMEOutputPort.cpp @@ -146,7 +146,7 @@ JackWinMMEOutputPort::Execute() // 100 ns resolution due_time.QuadPart = - -((LONG LONG) ((frame_time - current_time) * 10)); + -((LONGLONG) ((frame_time - current_time) * 10)); if (! SetWaitableTimer(timer, &due_time, 0, NULL, NULL, 0)) { WriteOSError("JackWinMMEOutputPort::Execute", "ChangeTimerQueueTimer");