Merge branch 'NetHack-3.6'

# Conflicts:
#	include/extern.h
#	src/allmain.c
#	win/tty/topl.c
This commit is contained in:
Bart House
2019-07-14 14:41:11 -07:00
6 changed files with 67 additions and 138 deletions

View File

@@ -3742,7 +3742,7 @@ struct opvar *mc;
{
int x, y;
schar mapc;
uchar lit;
xchar lit;
struct opvar *ret = selection_opvar((char *) 0);
if (!ov || !mc || !ret)
@@ -3762,7 +3762,7 @@ struct opvar *mc;
break;
case 0:
case 1:
if (levl[x][y].lit == lit)
if (levl[x][y].lit == (unsigned int) lit)
selection_setpoint(x, y, ret, 1);
break;
}