1
0
Fork 0
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:
shawlucas 2020-03-23 13:00:47 -07:00
parent 032a8de42f
commit 7bc9d3863c

View file

@ -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 {