mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-06-08 08:13:55 +00:00
Changes dynamic_cast<> to c-style cast.
This commit is contained in:
@@ -1217,8 +1217,7 @@ bool PhysicsDirect::submitClientCommand(const struct SharedMemoryCommand& comman
|
||||
|
||||
if (m_data->m_ownsCommandProcessor)
|
||||
{
|
||||
CommandProcessorInterface *commandProcessor = dynamic_cast<CommandProcessorInterface*>(m_data->m_commandProcessor);
|
||||
btAssert(commandProcessor);
|
||||
CommandProcessorInterface *commandProcessor = (CommandProcessorInterface *)m_data->m_commandProcessor;
|
||||
commandProcessor->tickPlugins();
|
||||
}
|
||||
/*if (hasStatus)
|
||||
|
||||
Reference in New Issue
Block a user