Merge branch 'NetHack-3.6'
This commit is contained in:
+3
-3
@@ -710,7 +710,7 @@ onMSNHCommand(HWND hWnd, WPARAM wParam, LPARAM lParam)
|
||||
mgch = ' ';
|
||||
} else {
|
||||
(void) mapglyph(data->map[col][row], &mgch, &color,
|
||||
&special, col, row);
|
||||
&special, col, row, 0);
|
||||
}
|
||||
msg_data->buffer[index] = mgch;
|
||||
index++;
|
||||
@@ -824,7 +824,7 @@ paintTile(PNHMapWindow data, int i, int j, RECT * rect)
|
||||
#ifdef USE_PILEMARK
|
||||
/* rely on NetHack core helper routine */
|
||||
(void) mapglyph(data->map[i][j], &mgch, &color, &special,
|
||||
i, j);
|
||||
i, j, 0);
|
||||
if ((glyph != NO_GLYPH) && (special & MG_PET)
|
||||
#else
|
||||
if ((glyph != NO_GLYPH) && glyph_is_pet(glyph)
|
||||
@@ -899,7 +899,7 @@ paintGlyph(PNHMapWindow data, int i, int j, RECT * rect)
|
||||
#else
|
||||
/* rely on NetHack core helper routine */
|
||||
(void) mapglyph(data->map[i][j], &mgch, &color,
|
||||
&special, i, j);
|
||||
&special, i, j, 0);
|
||||
ch = (char) mgch;
|
||||
if (((special & MG_PET) && iflags.hilite_pet)
|
||||
|| ((special & (MG_DETECT | MG_BW_LAVA))
|
||||
|
||||
+1
-1
@@ -3091,7 +3091,7 @@ mswin_status_update(int idx, genericptr_t ptr, int chg, int percent, int color,
|
||||
ochar = GOLD_SYM;
|
||||
else
|
||||
mapglyph(objnum_to_glyph(GOLD_PIECE),
|
||||
&ochar, &ocolor, &ospecial, 0, 0);
|
||||
&ochar, &ocolor, &ospecial, 0, 0, 0);
|
||||
buf[0] = ochar;
|
||||
p = strchr(text, ':');
|
||||
if (p) {
|
||||
|
||||
Reference in New Issue
Block a user