mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
chore(style): normalize memory allocations
This commit is contained in:
parent
90403bfd29
commit
97a6a8dd91
27 changed files with 147 additions and 279 deletions
|
|
@ -248,15 +248,8 @@ void CGlueMgr::Resume() {
|
|||
CoordinateSetAspectRatio(CGlueMgr::m_aspect);
|
||||
|
||||
// Create CSimpleTop
|
||||
CSimpleTop* top;
|
||||
|
||||
void* m = SMemAlloc(sizeof(CSimpleTop), __FILE__, __LINE__, 0);
|
||||
|
||||
if (m) {
|
||||
top = new (m) CSimpleTop();
|
||||
} else {
|
||||
top = nullptr;
|
||||
}
|
||||
auto m = SMemAlloc(sizeof(CSimpleTop), __FILE__, __LINE__, 0x0);
|
||||
auto top = new (m) CSimpleTop();
|
||||
|
||||
CGlueMgr::m_simpleTop = top;
|
||||
CGlueMgr::m_simpleTop->m_displaySizeCallback = &CGlueMgr::HandleDisplaySizeChanged;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue