mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-20 14:44:24 -04:00
Fix multiple classes being inappropriately zero-initialized via JKR_NEW* (#70)
This might also fix #71 and #72.
This commit is contained in:
@@ -401,7 +401,7 @@ JUTConsoleManager* JUTConsoleManager::createManager(JKRHeap* pHeap) {
|
||||
pHeap = JKRGetCurrentHeap();
|
||||
}
|
||||
|
||||
sManager = JKR_NEW_ARGS (pHeap, 0) JUTConsoleManager();
|
||||
sManager = JKR_NEW_ARGS (pHeap, 0) JUTConsoleManager;
|
||||
return sManager;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user