From 3d66feb682d37dbe8edf1861d3eac66ddc19958a Mon Sep 17 00:00:00 2001 From: Luke Street Date: Thu, 28 Jul 2022 07:28:29 -0400 Subject: [PATCH] Remove Metaforce hack --- lib/dolphin/GXDispList.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/dolphin/GXDispList.cpp b/lib/dolphin/GXDispList.cpp index a991aca..2be8a1c 100644 --- a/lib/dolphin/GXDispList.cpp +++ b/lib/dolphin/GXDispList.cpp @@ -12,12 +12,5 @@ u32 GXEndDisplayList() { } void GXCallDisplayList(const void* data, u32 nbytes) { - // TODO CElementGen needs fixing - for (const auto& type : aurora::gfx::gx::g_gxState.vtxDesc) { - if (type == GX_DIRECT) { - Log.report(LOG_WARNING, FMT_STRING("Direct attributes in surface config!")); - return; - } - } aurora::gfx::model::queue_surface(static_cast(data), nbytes); }