Skip to content

Commit

Permalink
Fixed|Client|64-bit: Build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 11, 2014
1 parent f595d14 commit 571d8b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/client/src/ui/inputsystem.cpp
Expand Up @@ -1192,8 +1192,8 @@ bool InputSystem::convertEvent(ddevent_t const &from, event_t &to) // static
to.type = EV_SYMBOLIC;
#ifdef __64BIT__
ASSERT_64BIT(from.symbolic.name);
ev->data1 = (int)(((uint64_t) from.symbolic.name) & 0xffffffff); // low dword
ev->data2 = (int)(((uint64_t) from.symbolic.name) >> 32); // high dword
to.data1 = (int)(((uint64_t) from.symbolic.name) & 0xffffffff); // low dword
to.data2 = (int)(((uint64_t) from.symbolic.name) >> 32); // high dword
#else
ASSERT_NOT_64BIT(from.symbolic.name);
to.data1 = (int) from.symbolic.name;
Expand Down

0 comments on commit 571d8b5

Please sign in to comment.