Skip to content

Commit

Permalink
Update DisplayListFactory.cpp (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
coco875 authored Dec 7, 2024
1 parent 31c8000 commit d252cc2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/resource/factory/DisplayListFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1117,6 +1117,14 @@ std::shared_ptr<Ship::IResource> ResourceFactoryXMLDisplayListV0::ReadResource(s
child = child->NextSiblingElement();
}

#ifdef F3DEX_GBI_2
dl->UCode = ucode_f3dex2;
#elif defined(F3DEX_GBI)
dl->UCode = ucode_f3dex;
#elif defined(F3D_OLD)
dl->UCode = ucode_f3d;
#endif

return dl;
}
} // namespace LUS

0 comments on commit d252cc2

Please sign in to comment.