From 30d52079a45b7177fad00580f31ac3780c5a23b5 Mon Sep 17 00:00:00 2001 From: _AG Date: Thu, 20 Jun 2019 11:26:15 +0200 Subject: Fix bug in templates.h, again. --- src/templates.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/templates.h b/src/templates.h index 82a94506..65f92a2a 100644 --- a/src/templates.h +++ b/src/templates.h @@ -82,8 +82,8 @@ public: return m_flags[i].free ? nil : (T*)&m_entries[i]; } T *GetAt(int handle){ - return m_flags[handle>>8].u == handle & 0xFF ? - nil : (T*)&m_entries[handle >> 8]; + return m_flags[handle>>8].u == (handle & 0xFF) ? + (T*)&m_entries[handle >> 8] : nil; } int GetIndex(T *entry){ int i = GetJustIndex(entry); -- cgit v1.2.3