mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-30 07:34:37 -04:00
Z2Audio player debug work / fix actor method returns (#3140)
* Z2Audio player debug work * fix actor method returns * wii build fix
This commit is contained in:
@@ -315,7 +315,7 @@ void dCsr_mng_c::bloObj_c::calcPaneObjNum(J2DPane* i_pane) {
|
||||
}
|
||||
|
||||
JSUTreeIterator<J2DPane> iter = i_pane->getPaneTree()->getFirstChild();
|
||||
while (iter != NULL) {
|
||||
while (iter) {
|
||||
calcPaneObjNum(*iter);
|
||||
++iter;
|
||||
}
|
||||
@@ -331,7 +331,7 @@ void dCsr_mng_c::bloObj_c::createPaneObj(paneObj_c** i_panes, J2DPane* i_pane) {
|
||||
}
|
||||
|
||||
JSUTreeIterator<J2DPane> iter = i_pane->getPaneTree()->getFirstChild();
|
||||
while (iter != NULL) {
|
||||
while (iter) {
|
||||
createPaneObj(i_panes, *iter);
|
||||
++iter;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user