aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--windows.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/windows.c b/windows.c
index 9fa6c95..494caae 100644
--- a/windows.c
+++ b/windows.c
@@ -1017,8 +1017,8 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
else
button = RIGHT_BUTTON;
- if (!midend_process_key(fe->me, LOWORD(lParam),
- HIWORD(lParam), button))
+ if (!midend_process_key(fe->me, (signed short)LOWORD(lParam),
+ (signed short)HIWORD(lParam), button))
PostQuitMessage(0);
SetCapture(hwnd);
@@ -1042,8 +1042,8 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
else
button = RIGHT_RELEASE;
- if (!midend_process_key(fe->me, LOWORD(lParam),
- HIWORD(lParam), button))
+ if (!midend_process_key(fe->me, (signed short)LOWORD(lParam),
+ (signed short)HIWORD(lParam), button))
PostQuitMessage(0);
ReleaseCapture();
@@ -1060,8 +1060,8 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
else
button = RIGHT_DRAG;
- if (!midend_process_key(fe->me, LOWORD(lParam),
- HIWORD(lParam), button))
+ if (!midend_process_key(fe->me, (signed short)LOWORD(lParam),
+ (signed short)HIWORD(lParam), button))
PostQuitMessage(0);
}
break;