Skip to content

Commit cc2134a

Browse files
authored
Fix ped duplication issue introduced in #2828 (#2853)
Addendum to 4dff64f: Fix ped duplication issue
1 parent 65c4c4e commit cc2134a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Client/game_sa/CPedSA.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,9 +303,9 @@ DWORD CPedSA::GetType()
303303
return m_dwType;
304304
}
305305

306-
void CPedSA::SetType(DWORD m_dwType)
306+
void CPedSA::SetType(DWORD dwType)
307307
{
308-
m_dwType = m_dwType;
308+
m_dwType = dwType;
309309
}
310310

311311
void CPedSA::RemoveWeaponModel(int iModel)

0 commit comments

Comments
 (0)