summaryrefslogtreecommitdiff
path: root/src/d/d_msg_scrn_light.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/d/d_msg_scrn_light.cpp')
-rw-r--r--src/d/d_msg_scrn_light.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/d_msg_scrn_light.cpp b/src/d/d_msg_scrn_light.cpp
index 106a698a6b..d841385af4 100644
--- a/src/d/d_msg_scrn_light.cpp
+++ b/src/d/d_msg_scrn_light.cpp
@@ -129,10 +129,10 @@ dMsgScrnLight_c::dMsgScrnLight_c(u8 i_colorType, u8 param_1) {
g_MsgScrnLight_HIO_c.updateColor(i_colorType);
mpScreen = new J2DScreen();
- JUT_ASSERT(mpScreen != 0);
+ JUT_ASSERT(0, mpScreen != 0);
bool fg = mpScreen->setPriority("zelda_message_window_text_light.blo", 0x20000,
dComIfGp_getMain2DArchive());
- JUT_ASSERT(fg != false);
+ JUT_ASSERT(0, fg != false);
dPaneClass_showNullPane(mpScreen);
OSInitFastCast();
@@ -146,7 +146,7 @@ dMsgScrnLight_c::dMsgScrnLight_c(u8 i_colorType, u8 param_1) {
mBpkFrame = 0.0f;
mpParent_c = new CPaneMgr(mpScreen, 'moya00', 0, NULL);
- JUT_ASSERT(mpParent_c != 0);
+ JUT_ASSERT(0, mpParent_c != 0);
mpParent_c->getPanePtr()->setAnimation(mpBck);
mpParent_c->getPanePtr()->setAnimation(mpBpk);
@@ -283,4 +283,4 @@ void dMsgScrnLight_c::drawCommon(f32 i_posX, f32 i_posY, f32 i_scaleX, f32 i_sca
}
mAlpha = i_alpha;
-} \ No newline at end of file
+}