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