1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

pfGameGUIMsg => plString

This commit is contained in:
2014-01-09 21:00:02 -08:00
parent d8113a5ab7
commit 82029b56ff
3 changed files with 30 additions and 24 deletions

View File

@ -181,11 +181,11 @@ bool pfGameGUIMgr::MsgReceive( plMessage* pMsg )
if( guiMsg != nil )
{
if( guiMsg->GetCommand() == pfGameGUIMsg::kLoadDialog )
LoadDialog( guiMsg->GetString(), nil, guiMsg->GetAge() );
LoadDialog(guiMsg->GetString().c_str(), nil, guiMsg->GetAge().c_str());
else if( guiMsg->GetCommand() == pfGameGUIMsg::kShowDialog )
IShowDialog( guiMsg->GetString() );
IShowDialog(guiMsg->GetString().c_str());
else if( guiMsg->GetCommand() == pfGameGUIMsg::kHideDialog )
IHideDialog( guiMsg->GetString() );
IHideDialog(guiMsg->GetString().c_str());
return true;
}