mirror of
https://github.com/1dot13/source.git
synced 2026-09-02 14:36:06 +02:00
Update Dialogue Control.cpp
Fix an access to member variable that prevented compilation
This commit is contained in:
@@ -900,11 +900,11 @@ void HandleDialogue( )
|
|||||||
}
|
}
|
||||||
else if ( QItem.uiSpecialEventFlag & DIALOGUE_SPECIAL_EVENT_CONTRACT_WANTS_TO_RENEW )
|
else if ( QItem.uiSpecialEventFlag & DIALOGUE_SPECIAL_EVENT_CONTRACT_WANTS_TO_RENEW )
|
||||||
{
|
{
|
||||||
HandleMercIsWillingToRenew( (UINT16)QItem->uiSpecialEventData );
|
HandleMercIsWillingToRenew( (UINT16)QItem.uiSpecialEventData );
|
||||||
}
|
}
|
||||||
else if ( QItem.uiSpecialEventFlag & DIALOGUE_SPECIAL_EVENT_CONTRACT_NOGO_TO_RENEW )
|
else if ( QItem.uiSpecialEventFlag & DIALOGUE_SPECIAL_EVENT_CONTRACT_NOGO_TO_RENEW )
|
||||||
{
|
{
|
||||||
HandleMercIsNotWillingToRenew( (UINT16)QItem->uiSpecialEventData );
|
HandleMercIsNotWillingToRenew( (UINT16)QItem.uiSpecialEventData );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user