mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-12-07 10:28:30 +00:00
Changed misleading variable name
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40485
This commit is contained in:
parent
9858c3e879
commit
ddb9047904
@ -696,12 +696,12 @@ namespace SourceHook
|
|||||||
CHookManagerContainer &container = m_HookManContainers.GetContainer(hookManager.GetVtblOffs(),
|
CHookManagerContainer &container = m_HookManContainers.GetContainer(hookManager.GetVtblOffs(),
|
||||||
hookManager.GetVtblIdx(), hookManager.GetProto());
|
hookManager.GetVtblIdx(), hookManager.GetProto());
|
||||||
|
|
||||||
CHookManagerContainer::iterator cont_iter = container.find(CHookManager::Descriptor(plug, pubFunc));
|
CHookManagerContainer::iterator hookman_iter = container.find(CHookManager::Descriptor(plug, pubFunc));
|
||||||
|
|
||||||
if (cont_iter != container.end())
|
if (hookman_iter != container.end())
|
||||||
{
|
{
|
||||||
for (List<CVfnPtr>::iterator vfnptr_iter = cont_iter->GetVfnPtrList().begin();
|
for (List<CVfnPtr>::iterator vfnptr_iter = hookman_iter->GetVfnPtrList().begin();
|
||||||
vfnptr_iter != cont_iter->GetVfnPtrList().end(); ++vfnptr_iter)
|
vfnptr_iter != hookman_iter->GetVfnPtrList().end(); ++vfnptr_iter)
|
||||||
{
|
{
|
||||||
for (List<CIface>::iterator iface_iter = vfnptr_iter->GetIfaceList().begin();
|
for (List<CIface>::iterator iface_iter = vfnptr_iter->GetIfaceList().begin();
|
||||||
iface_iter != vfnptr_iter->GetIfaceList().end(); ++iface_iter)
|
iface_iter != vfnptr_iter->GetIfaceList().end(); ++iface_iter)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user