summaryrefslogtreecommitdiff
path: root/src/d/d_meter_string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/d/d_meter_string.cpp')
-rw-r--r--src/d/d_meter_string.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/d/d_meter_string.cpp b/src/d/d_meter_string.cpp
index ebfde58fab..29593123bc 100644
--- a/src/d/d_meter_string.cpp
+++ b/src/d/d_meter_string.cpp
@@ -48,10 +48,10 @@ int dMeterString_c::_create() {
}
mpScreen = new J2DScreen();
- JUT_ASSERT(mpScreen != 0);
+ JUT_ASSERT(0, mpScreen != 0);
bool fg = mpScreen->setPriority("zelda_game_image_cow_get_in.blo", 0x20000, mpMapArchive);
- JUT_ASSERT(fg != false);
+ JUT_ASSERT(0, fg != false);
dPaneClass_showNullPane(mpScreen);
OSInitFastCast();
@@ -59,13 +59,13 @@ int dMeterString_c::_create() {
JKRGetNameResource("zelda_game_image_cow_get_in.bck", mpMapArchive));
mpParentPane = new CPaneMgr(mpScreen, 'get_in_n', 2, NULL);
- JUT_ASSERT(mpParentPane != 0);
+ JUT_ASSERT(0, mpParentPane != 0);
mpRootPane = new CPaneMgr(mpScreen, 'n_all', 0, NULL);
- JUT_ASSERT(mpRootPane != 0);
+ JUT_ASSERT(0, mpRootPane != 0);
mpTextPane = new CPaneMgr(mpScreen, 'get_in', 0, NULL);
- JUT_ASSERT(mpTextPane != 0);
+ JUT_ASSERT(0, mpTextPane != 0);
static_cast<J2DTextBox*>(mpScreen->search('get_in_s'))->setFont(mDoExt_getMesgFont());
static_cast<J2DTextBox*>(mpScreen->search('get_in'))->setFont(mDoExt_getMesgFont());
@@ -263,4 +263,4 @@ void dMeterString_c::drawPikari() {
/* 8020FA88-8020FAB4 20A3C8 002C+00 1/1 0/0 0/0 .text isLeadByte__14dMeterString_cFi */
bool dMeterString_c::isLeadByte(int c) {
return (c >= 0x81 && c <= 0x9F) || (c >= 0xE0 && c <= 0xFC);
-} \ No newline at end of file
+}