diff options
Diffstat (limited to 'plugins/NewStory/src')
-rw-r--r-- | plugins/NewStory/src/history_control.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index f40b4663dc..7e8d25ba8f 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -859,10 +859,10 @@ LRESULT CALLBACK NewstoryListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM break; case WM_MOUSEWHEEL: - if ((int)HIWORD(wParam) < 0) - data->LineUp(); - else + if ((short)HIWORD(wParam) < 0) data->LineDown(); + else + data->LineUp(); return TRUE; case WM_VSCROLL: |