mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +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 )
|
||||
{
|
||||
HandleMercIsWillingToRenew( (UINT16)QItem->uiSpecialEventData );
|
||||
HandleMercIsWillingToRenew( (UINT16)QItem.uiSpecialEventData );
|
||||
}
|
||||
else if ( QItem.uiSpecialEventFlag & DIALOGUE_SPECIAL_EVENT_CONTRACT_NOGO_TO_RENEW )
|
||||
{
|
||||
HandleMercIsNotWillingToRenew( (UINT16)QItem->uiSpecialEventData );
|
||||
HandleMercIsNotWillingToRenew( (UINT16)QItem.uiSpecialEventData );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user