Fixing formatting.

This commit is contained in:
Ben Vanik 2015-07-28 00:32:01 -07:00
parent ad9472e60b
commit e01c2ac98d
2 changed files with 6 additions and 7 deletions

View File

@ -199,19 +199,19 @@ X_RESULT WinKeyInputDriver::GetKeystroke(uint32_t user_index, uint32_t flags,
// left stick // left stick
if (IS_KEY_DOWN(0x57)) { if (IS_KEY_DOWN(0x57)) {
// W // W
virtual_key = 0x5820; // VK_PAD_LTHUMB_UP virtual_key = 0x5820; // VK_PAD_LTHUMB_UP
} }
if (IS_KEY_DOWN(0x53)) { if (IS_KEY_DOWN(0x53)) {
// S // S
virtual_key = 0x5821; // VK_PAD_LTHUMB_DOWN virtual_key = 0x5821; // VK_PAD_LTHUMB_DOWN
} }
if (IS_KEY_DOWN(0x44)) { if (IS_KEY_DOWN(0x44)) {
// D // D
virtual_key = 0x5822; // VK_PAD_LTHUMB_RIGHT virtual_key = 0x5822; // VK_PAD_LTHUMB_RIGHT
} }
if (IS_KEY_DOWN(0x41)) { if (IS_KEY_DOWN(0x41)) {
// A // A
virtual_key = 0x5823; // VK_PAD_LTHUMB_LEFT virtual_key = 0x5823; // VK_PAD_LTHUMB_LEFT
} }
} }
@ -257,7 +257,7 @@ X_RESULT WinKeyInputDriver::GetKeystroke(uint32_t user_index, uint32_t flags,
} }
if (virtual_key != 0) { if (virtual_key != 0) {
keystroke_flags |= 0x0001; // XINPUT_KEYSTROKE_DOWN keystroke_flags |= 0x0001; // XINPUT_KEYSTROKE_DOWN
result = X_ERROR_SUCCESS; result = X_ERROR_SUCCESS;
} }

View File

@ -241,8 +241,7 @@ uint8_t* XObject::CreateNative(uint32_t size) {
auto header = memory()->TranslateVirtual<X_OBJECT_HEADER*>(mem); auto header = memory()->TranslateVirtual<X_OBJECT_HEADER*>(mem);
auto object_type = auto object_type = memory()->SystemHeapAlloc(sizeof(X_OBJECT_TYPE));
memory()->SystemHeapAlloc(sizeof(X_OBJECT_TYPE));
if (object_type) { if (object_type) {
// Set it up in the header. // Set it up in the header.
// Some kernel method is accessing this struct and dereferencing a member // Some kernel method is accessing this struct and dereferencing a member