mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-11 21:21:57 -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:
+1
-1
@@ -1454,7 +1454,7 @@ void dScnLogo_c::dvdDataLoad() {
|
||||
|
||||
static int dScnLogo_Create(scene_class* i_this) {
|
||||
DuskLog.debug("[DIAG] dScnLogo_Create: entry i_this={}", (void*)i_this);
|
||||
return (JKR_NEW_ARGS (i_this) dScnLogo_c())->create();
|
||||
return (JKR_NEW_ARGS (i_this) dScnLogo_c)->create();
|
||||
}
|
||||
|
||||
static int dScnLogo_Execute(dScnLogo_c* i_this) {
|
||||
|
||||
Reference in New Issue
Block a user