mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Made more suggested changes
This commit is contained in:
parent
032a8de42f
commit
7bc9d3863c
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ static void func_808C0EEC(BgZg* this, GlobalContext* globalCtx) {
|
|||
static void BgZg_Draw(BgZg* this, GlobalContext* globalCtx) {
|
||||
s32 action = this->drawConfig;
|
||||
|
||||
if (((action < 0) || (action > 0)) || drawFuncs[action] == 0) {
|
||||
if (((action < 0) || (action > 0)) || drawFuncs[action] == NULL) {
|
||||
// Translates to: "Drawing mode is wrong !!!!!!!!!!!!!!!!!!!!!!!!!"
|
||||
osSyncPrintf(VT_FGCOL(RED) "描画モードがおかしい!!!!!!!!!!!!!!!!!!!!!!!!!\n" VT_RST);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue