mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 12:29:01 +00:00
Fix bug in templates.h, again.
This commit is contained in:
parent
ef8e9e7f1b
commit
30d52079a4
1 changed files with 2 additions and 2 deletions
|
@ -82,8 +82,8 @@ public:
|
||||||
return m_flags[i].free ? nil : (T*)&m_entries[i];
|
return m_flags[i].free ? nil : (T*)&m_entries[i];
|
||||||
}
|
}
|
||||||
T *GetAt(int handle){
|
T *GetAt(int handle){
|
||||||
return m_flags[handle>>8].u == handle & 0xFF ?
|
return m_flags[handle>>8].u == (handle & 0xFF) ?
|
||||||
nil : (T*)&m_entries[handle >> 8];
|
(T*)&m_entries[handle >> 8] : nil;
|
||||||
}
|
}
|
||||||
int GetIndex(T *entry){
|
int GetIndex(T *entry){
|
||||||
int i = GetJustIndex(entry);
|
int i = GetJustIndex(entry);
|
||||||
|
|
Loading…
Reference in a new issue