From 8ba0f1f43cf4b00363f8eba632fc112cbf3a10d1 Mon Sep 17 00:00:00 2001 From: divverent Date: Sat, 14 Nov 2009 23:08:37 +0000 Subject: [PATCH] ODE: add two missing symbols git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9496 d7cf8633-e32d-0410-b094-e92efae38249 --- world.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/world.c b/world.c index 8c49d713..9fd89d76 100644 --- a/world.c +++ b/world.c @@ -526,7 +526,7 @@ typedef void dNearCallback (void *data, dGeomID o1, dGeomID o2); #define dSAP_AXES_ZYX ((2)|(1<<2)|(0<<4)) //const char* (ODE_API *dGetConfiguration)(void); -//int (ODE_API *dCheckConfiguration)( const char* token ); +int (ODE_API *dCheckConfiguration)( const char* token ); int (ODE_API *dInitODE)(void); //int (ODE_API *dInitODE2)(unsigned int uiInitFlags); //int (ODE_API *dAllocateODEDataForThread)(unsigned int uiAllocateFlags); @@ -992,7 +992,7 @@ dGeomID (ODE_API *dCreateTriMesh)(dSpaceID space, dTriMeshDataID Data, d static dllfunction_t odefuncs[] = { // {"dGetConfiguration", (void **) &dGetConfiguration}, -// {"dCheckConfiguration", (void **) &dCheckConfiguration}, + {"dCheckConfiguration", (void **) &dCheckConfiguration}, {"dInitODE", (void **) &dInitODE}, // {"dInitODE2", (void **) &dInitODE2}, // {"dAllocateODEDataForThread", (void **) &dAllocateODEDataForThread}, -- 2.39.2