diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-20 01:04:57 +0300 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-20 01:04:57 +0300 |
commit | 7e4c68382416229cf0a58637bd9f308a6def1caa (patch) | |
tree | 61be1bbcb1242293639c1ad5a4ce3e3e72aea271 /src/core | |
parent | df376a13ea8dac7ecff2aabe7d715774bcc7c294 (diff) |
fixes
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/Frontend.h | 2 | ||||
-rw-r--r-- | src/core/templates.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/core/Frontend.h b/src/core/Frontend.h index 9fb0756f..ce9861c8 100644 --- a/src/core/Frontend.h +++ b/src/core/Frontend.h @@ -644,4 +644,4 @@ public: static_assert(sizeof(CMenuManager) == 0x564, "CMenuManager: error"); extern CMenuManager FrontEndMenuManager; -extern DWORD _dwOperatingSystemVersion;
\ No newline at end of file +extern unsigned long _dwOperatingSystemVersion;
\ No newline at end of file diff --git a/src/core/templates.h b/src/core/templates.h index a1627357..51a24e4c 100644 --- a/src/core/templates.h +++ b/src/core/templates.h @@ -104,6 +104,10 @@ public: return m_flags[i].free ? nil : (T*)&m_entries[i]; } T *GetAt(int handle){ +#ifdef FIX_BUGS + if (handle == -1) + return nil; +#endif return m_flags[handle>>8].u == (handle & 0xFF) ? (T*)&m_entries[handle >> 8] : nil; } |