From da315610091fb70c63aa21c81a869d627532f733 Mon Sep 17 00:00:00 2001 From: Visual Ehrmanntraut <30368284+VisualEhrmanntraut@users.noreply.github.com> Date: Mon, 26 Aug 2024 14:35:11 +0300 Subject: [PATCH] fix: Add struct initialiser for modules --- NootedRed/NRed.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/NootedRed/NRed.hpp b/NootedRed/NRed.hpp index e330c93d..c10f53ec 100644 --- a/NootedRed/NRed.hpp +++ b/NootedRed/NRed.hpp @@ -81,11 +81,11 @@ class NRed { UInt16 devRevision {0}; UInt16 enumRevision {0}; - X6000FB x6000fb; - AppleGFXHDA agfxhda; - X5000HWLibs hwlibs; - X6000 x6000; - X5000 x5000; + X6000FB x6000fb {}; + AppleGFXHDA agfxhda {}; + X5000HWLibs hwlibs {}; + X6000 x6000 {}; + X5000 x5000 {}; void init(); void processPatcher(KernelPatcher &patcher);