aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Android.mk1
-rw-r--r--quake/src/WinQuake/pr_exec.cpp4
2 files changed, 3 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 45e2e91..532ed6e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -95,6 +95,7 @@ LOCAL_C_INCLUDES:= \
LOCAL_SHARED_LIBRARIES := \
libutils \
+ liblog \
libEGL \
libGLESv1_CM \
libOpenSLES
diff --git a/quake/src/WinQuake/pr_exec.cpp b/quake/src/WinQuake/pr_exec.cpp
index 596454e..39ce86c 100644
--- a/quake/src/WinQuake/pr_exec.cpp
+++ b/quake/src/WinQuake/pr_exec.cpp
@@ -577,7 +577,7 @@ while (1)
#ifdef PARANOID
NUM_FOR_EDICT(ed); // make sure it's in range
#endif
- a = (eval_t *)((void *) (ed->u.i + b->_int));
+ a = (eval_t *)((void *)(ed->u.i + b->_int));
c->_int = a->_int;
break;
@@ -586,7 +586,7 @@ while (1)
#ifdef PARANOID
NUM_FOR_EDICT(ed); // make sure it's in range
#endif
- a = (eval_t *)((void *) (ed->u.i + b->_int));
+ a = (eval_t *)((void *)(ed->u.i + b->_int));
c->vector[0] = a->vector[0];
c->vector[1] = a->vector[1];
c->vector[2] = a->vector[2];