Fixed the app_server build in the test environment.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15005 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -114,7 +114,12 @@ InputServerStream::GetNextCursorPosition(BPoint &where)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAIKU_TARGET_PLATFORM_HAIKU
|
||||||
uint32 pos = atomic_get((int32*)&fCursorBuffer->pos);
|
uint32 pos = atomic_get((int32*)&fCursorBuffer->pos);
|
||||||
|
#else
|
||||||
|
uint32 pos = fCursorBuffer->pos;
|
||||||
|
#endif
|
||||||
|
|
||||||
where.x = pos & 0xffff;
|
where.x = pos & 0xffff;
|
||||||
where.y = pos >> 16L;
|
where.y = pos >> 16L;
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,8 @@ Server haiku_app_server :
|
|||||||
PNGDump.cpp
|
PNGDump.cpp
|
||||||
RAMLinkMsgReader.cpp
|
RAMLinkMsgReader.cpp
|
||||||
MessageLooper.cpp
|
MessageLooper.cpp
|
||||||
|
EventDispatcher.cpp
|
||||||
|
EventStream.cpp
|
||||||
|
|
||||||
# Manager Classes
|
# Manager Classes
|
||||||
BitmapManager.cpp
|
BitmapManager.cpp
|
||||||
|
|||||||
Reference in New Issue
Block a user