mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 05:25:14 +00:00
Fix mac compile
This commit is contained in:
parent
e47e1ede47
commit
23d7c83267
1 changed files with 4 additions and 5 deletions
|
@ -115,11 +115,10 @@ ActorGfx* DynOS_Actor_GetActorGfx(const GraphNode* aGraphNode) {
|
|||
}
|
||||
|
||||
// Check graph node
|
||||
auto it = std::find_if(_ValidActors.begin(), _ValidActors.end(),
|
||||
[&aGraphNode](const auto& _Actor) { return _Actor.second.mGraphNode == aGraphNode; }
|
||||
);
|
||||
if (it != _ValidActors.end()) {
|
||||
return &it->second;
|
||||
for (const auto& _Actor : _ValidActors) {
|
||||
if (_Actor.second.mGraphNode == aGraphNode) {
|
||||
return (ActorGfx*)&_Actor.second;
|
||||
}
|
||||
}
|
||||
|
||||
// No actor found
|
||||
|
|
Loading…
Reference in a new issue