Fix data type for Modal Dialog ID
This commit is contained in:
parent
2095951e07
commit
408e9b4239
|
@ -1383,7 +1383,7 @@ void Game::requestItemInfo(const ItemPtr& item, int index)
|
|||
m_protocolGame->sendRequestItemInfo(item->getId(), item->getSubType(), index);
|
||||
}
|
||||
|
||||
void Game::answerModalDialog(int dialog, int button, int choice)
|
||||
void Game::answerModalDialog(uint32 dialog, int button, int choice)
|
||||
{
|
||||
if(!canPerformGameAction())
|
||||
return;
|
||||
|
|
|
@ -282,7 +282,7 @@ public:
|
|||
void requestItemInfo(const ItemPtr& item, int index);
|
||||
|
||||
// >= 970 modal dialog
|
||||
void answerModalDialog(int dialog, int button, int choice);
|
||||
void answerModalDialog(uint32 dialog, int button, int choice);
|
||||
|
||||
// >= 984 browse field
|
||||
void browseField(const Position& position);
|
||||
|
|
|
@ -110,7 +110,7 @@ public:
|
|||
void sendRequestQuestLine(int questId);
|
||||
void sendNewNewRuleViolation(int reason, int action, const std::string& characterName, const std::string& comment, const std::string& translation);
|
||||
void sendRequestItemInfo(int itemId, int subType, int index);
|
||||
void sendAnswerModalDialog(int dialog, int button, int choice);
|
||||
void sendAnswerModalDialog(uint32 dialog, int button, int choice);
|
||||
void sendBrowseField(const Position& position);
|
||||
void sendSeekInContainer(int cid, int index);
|
||||
void sendBuyStoreOffer(int offerId, int productType, const std::string& name);
|
||||
|
|
|
@ -830,7 +830,7 @@ void ProtocolGame::sendRequestItemInfo(int itemId, int subType, int index)
|
|||
send(msg);
|
||||
}
|
||||
|
||||
void ProtocolGame::sendAnswerModalDialog(int dialog, int button, int choice)
|
||||
void ProtocolGame::sendAnswerModalDialog(uint32 dialog, int button, int choice)
|
||||
{
|
||||
OutputMessagePtr msg(new OutputMessage);
|
||||
msg->addU8(Proto::ClientAnswerModalDialog);
|
||||
|
|
Loading…
Reference in New Issue