mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 08:49:00 +00:00
it works differently
This commit is contained in:
parent
9d4d83db0d
commit
8e0b132f43
2 changed files with 6 additions and 6 deletions
|
@ -1449,10 +1449,10 @@ cSampleManager::IsPedCommentLoaded(uint32 nComment)
|
|||
|
||||
for ( int32 i = 0; i < _TODOCONST(3); i++ )
|
||||
{
|
||||
#ifdef FIX_BUGS
|
||||
slot = (nCurrentPedSlot - i - 1) % ARRAY_SIZE(nPedSlotSfx);
|
||||
#else
|
||||
slot = nCurrentPedSlot - i - 1;
|
||||
#ifdef FIX_BUGS
|
||||
if (slot < 0)
|
||||
slot += ARRAY_SIZE(nPedSlotSfx);
|
||||
#endif
|
||||
if ( nComment == nPedSlotSfx[slot] )
|
||||
return true;
|
||||
|
|
|
@ -779,10 +779,10 @@ cSampleManager::IsPedCommentLoaded(uint32 nComment)
|
|||
|
||||
for ( int32 i = 0; i < _TODOCONST(3); i++ )
|
||||
{
|
||||
#ifdef FIX_BUGS
|
||||
slot = (nCurrentPedSlot - i - 1) % ARRAY_SIZE(nPedSlotSfx);
|
||||
#else
|
||||
slot = nCurrentPedSlot - i - 1;
|
||||
#ifdef FIX_BUGS
|
||||
if (slot < 0)
|
||||
slot += ARRAY_SIZE(nPedSlotSfx);
|
||||
#endif
|
||||
if ( nComment == nPedSlotSfx[slot] )
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue