From: divverent Date: Tue, 20 Oct 2009 15:31:00 +0000 (+0000) Subject: comment out two unused functions (as ODE 0.9 does not have them) X-Git-Tag: xonotic-v0.1.0preview~1270 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4c5652d68edb49062d199b04e24d7174b7e18446;p=xonotic%2Fdarkplaces.git comment out two unused functions (as ODE 0.9 does not have them) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9367 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/world.c b/world.c index ae836a42..6ab70647 100644 --- a/world.c +++ b/world.c @@ -480,8 +480,8 @@ const char* (ODE_API *dGetConfiguration)(void); 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); -void (ODE_API *dCleanupODEAllDataForThread)(void); +//int (ODE_API *dAllocateODEDataForThread)(unsigned int uiAllocateFlags); +//void (ODE_API *dCleanupODEAllDataForThread)(void); void (ODE_API *dCloseODE)(void); //int (ODE_API *dMassCheck)(const dMass *m); @@ -946,8 +946,8 @@ static dllfunction_t odefuncs[] = {"dCheckConfiguration", (void **) &dCheckConfiguration}, {"dInitODE", (void **) &dInitODE}, // {"dInitODE2", (void **) &dInitODE2}, - {"dAllocateODEDataForThread", (void **) &dAllocateODEDataForThread}, - {"dCleanupODEAllDataForThread", (void **) &dCleanupODEAllDataForThread}, +// {"dAllocateODEDataForThread", (void **) &dAllocateODEDataForThread}, +// {"dCleanupODEAllDataForThread", (void **) &dCleanupODEAllDataForThread}, {"dCloseODE", (void **) &dCloseODE}, // {"dMassCheck", (void **) &dMassCheck}, // {"dMassSetZero", (void **) &dMassSetZero},