Fix the windows build

This commit is contained in:
Pierre Krieger 2015-07-19 15:00:38 +02:00
parent 896640f2e0
commit b573a161a9

View file

@ -2,7 +2,7 @@ use events::VirtualKeyCode;
use winapi; use winapi;
pub fn vkeycode_to_element(code: winapi::WPARAM) -> Option<VirtualKeyCode> { pub fn vkeycode_to_element(code: winapi::WPARAM) -> Option<VirtualKeyCode> {
match code { match code as i32 {
//winapi::VK_LBUTTON => Some(VirtualKeyCode::Lbutton), //winapi::VK_LBUTTON => Some(VirtualKeyCode::Lbutton),
//winapi::VK_RBUTTON => Some(VirtualKeyCode::Rbutton), //winapi::VK_RBUTTON => Some(VirtualKeyCode::Rbutton),
//winapi::VK_CANCEL => Some(VirtualKeyCode::Cancel), //winapi::VK_CANCEL => Some(VirtualKeyCode::Cancel),