projects
/
freeglut
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7094cf7
)
and with 0xFF to indicate to runtime that we want to strip out higher bits - otherwis...
author
Diederick Niehorster
<dcnieho@gmail.com>
Thu, 4 Apr 2013 10:20:43 +0000
(10:20 +0000)
committer
Diederick Niehorster
<dcnieho@gmail.com>
Thu, 4 Apr 2013 10:20:43 +0000
(10:20 +0000)
Thanks Jason Wilkins!
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1584
7f0cb862
-5218-0410-a997-
914c9d46530a
src/mswin/fg_main_mswin.c
patch
|
blob
|
history
diff --git
a/src/mswin/fg_main_mswin.c
b/src/mswin/fg_main_mswin.c
index
ad80055
..
6100ae1
100644
(file)
--- a/
src/mswin/fg_main_mswin.c
+++ b/
src/mswin/fg_main_mswin.c
@@
-296,7
+296,7
@@
static LRESULT fghWindowProcKeyPress(SFG_Window *window, UINT uMsg, GLboolean ke
wParam=code[ 0 ];
INVOKE_WCB( *window, KeyboardUp,
- ( (char)wParam,
+ ( (char)(wParam & 0xFF), /* and with 0xFF to indicate to runtime that we want to strip out higher bits - otherwise we get a runtime error when "Smaller Type Checks" is enabled */
window->State.MouseX, window->State.MouseY )
);
}