early-access version 1675
This commit is contained in:
parent
dfecca5380
commit
97603cd694
@ -1,7 +1,7 @@
|
|||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1674.
|
This is the source code for early-access 1675.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ void RB_INSERT_COLOR(RBHead<Node>* head, Node* elm) {
|
|||||||
template <typename Node>
|
template <typename Node>
|
||||||
void RB_REMOVE_COLOR(RBHead<Node>* head, Node* parent, Node* elm) {
|
void RB_REMOVE_COLOR(RBHead<Node>* head, Node* parent, Node* elm) {
|
||||||
Node* tmp;
|
Node* tmp;
|
||||||
while ((elm == nullptr || RB_IS_BLACK(elm)) && elm != head->Root()) {
|
while ((elm == nullptr || RB_IS_BLACK(elm)) && elm != head->Root() && parent != nullptr) {
|
||||||
if (RB_LEFT(parent) == elm) {
|
if (RB_LEFT(parent) == elm) {
|
||||||
tmp = RB_RIGHT(parent);
|
tmp = RB_RIGHT(parent);
|
||||||
if (RB_IS_RED(tmp)) {
|
if (RB_IS_RED(tmp)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user