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)
|
if (m_data->m_ownsCommandProcessor)
|
||||||
{
|
{
|
||||||
CommandProcessorInterface *commandProcessor = dynamic_cast<CommandProcessorInterface*>(m_data->m_commandProcessor);
|
CommandProcessorInterface *commandProcessor = (CommandProcessorInterface *)m_data->m_commandProcessor;
|
||||||
btAssert(commandProcessor);
|
|
||||||
commandProcessor->tickPlugins();
|
commandProcessor->tickPlugins();
|
||||||
}
|
}
|
||||||
/*if (hasStatus)
|
/*if (hasStatus)
|
||||||
|
|||||||
Reference in New Issue
Block a user