diff --git a/NootedRed/NRed.cpp b/NootedRed/NRed.cpp index 968848a..ff9b015 100644 --- a/NootedRed/NRed.cpp +++ b/NootedRed/NRed.cpp @@ -386,7 +386,7 @@ bool NRed::getVBIOSFromVFCT() { auto *vfct = static_cast(vfctData->getBytesNoCopy()); PANIC_COND(vfct == nullptr, "NRed", "VFCT OSData::getBytesNoCopy returned null"); - if (vfctData->getLength() > sizeof(VFCT)) { + if (vfctData->getLength() < sizeof(VFCT)) { DBGLOG("NRed", "VFCT table present but broken (too short #1)."); return false; }