summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_protocol_wine
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2013-09-19 12:23:57 +0200
committerStanislaw Halik <sthalik@misaki.pl>2013-09-19 12:23:57 +0200
commit9ddf5d3ba5024c0266b910365e86c6fa58e9d266 (patch)
tree8f7b99fa48801ef537687f95060813070630f0b2 /ftnoir_protocol_wine
parentaf71f2534fc1e99ed7d483190e99d4dc674bcd76 (diff)
proto-wine: use compat-shm::success()
Diffstat (limited to 'ftnoir_protocol_wine')
-rw-r--r--ftnoir_protocol_wine/ftnoir_protocol_wine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_protocol_wine/ftnoir_protocol_wine.cpp b/ftnoir_protocol_wine/ftnoir_protocol_wine.cpp
index 96a15b93..698c2236 100644
--- a/ftnoir_protocol_wine/ftnoir_protocol_wine.cpp
+++ b/ftnoir_protocol_wine/ftnoir_protocol_wine.cpp
@@ -7,7 +7,7 @@
/** constructor **/
FTNoIR_Protocol::FTNoIR_Protocol() : lck_shm(WINE_SHM_NAME, WINE_MTX_NAME, sizeof(WineSHM)), shm(NULL), gameid(0)
{
- if (lck_shm.mem != (void*) -1) {
+ if (lck_shm.success()) {
shm = (WineSHM*) lck_shm.mem;
memset(shm, 0, sizeof(*shm));
}
@@ -53,7 +53,7 @@ void FTNoIR_Protocol::sendHeadposeToGame( double *headpose, double *rawheadpose
//
bool FTNoIR_Protocol::checkServerInstallationOK()
{
- return lck_shm.mem != (void*)-1;
+ return lck_shm.success();
}
////////////////////////////////////////////////////////////////////////////////