added updated template files

This commit is contained in:
Dale Stammen 2014-09-26 11:03:10 -07:00
parent 209f67f222
commit 1f9d260207
1 changed files with 2 additions and 2 deletions

View File

@ -188,10 +188,10 @@ void Direct3DInterop::SetCocos2dOpenURLDelegate(Cocos2dOpenURLDelegate ^ delegat
bool Direct3DInterop::SendCocos2dEvent(Cocos2dEvent event) bool Direct3DInterop::SendCocos2dEvent(Cocos2dEvent event)
{ {
std::string str; Platform::String^ str;
if(m_delegate) if(m_delegate)
{ {
m_delegate->Invoke(event, stringToPlatformString(str)); m_delegate->Invoke(event, str);
return true; return true;
} }
return false; return false;