mirror of
https://github.com/zeldaret/botw
synced 2026-08-17 21:13:01 -04:00
ksys/phys: Rename MemSystem to System
It was called MemSystem in the IDB because of a string in ksys::InitializeApp that referred to MemSystem initialisation as "Physics Memory System"; however that string actually referred to an initialisation step for the physics system, not to the name of the subsystem itself.
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
#include <prim/seadScopedLock.h>
|
||||
#include "KingSystem/Physics/System/physEntityGroupFilter.h"
|
||||
#include "KingSystem/Physics/System/physGroupFilter.h"
|
||||
#include "KingSystem/Physics/System/physMemSystem.h"
|
||||
#include "KingSystem/Physics/System/physRigidContactPoints.h"
|
||||
#include "KingSystem/Physics/System/physRigidContactPointsEx.h"
|
||||
#include "KingSystem/Physics/System/physSystem.h"
|
||||
|
||||
namespace ksys::phys {
|
||||
|
||||
@@ -53,7 +53,7 @@ void ContactMgr::doLoadContactInfoTable(agl::utl::ResParameterArchive archive,
|
||||
const auto root = archive.getRootList();
|
||||
const auto names = root.getResParameterObj(0);
|
||||
|
||||
const auto* filter = MemSystem::instance()->getGroupFilter(type);
|
||||
const auto* filter = System::instance()->getGroupFilter(type);
|
||||
const auto layer_base = static_cast<int>(getContactLayerBase(type));
|
||||
|
||||
for (int i = 0; i < table.receivers.size(); ++i) {
|
||||
|
||||
Reference in New Issue
Block a user