1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-08-05 12:15:26 +01:00

Fix wrong input type for print_dungeon

This commit is contained in:
ChrisANG 2018-05-31 17:39:45 -04:00
parent fed79d2fb5
commit 5bb5180ebb

View file

@ -1230,7 +1230,7 @@ wiz_genesis()
STATIC_PTR int
wiz_where()
{
if (wizard) (void) print_dungeon(FALSE, (schar *)0, (xchar *)0);
if (wizard) (void) print_dungeon(FALSE, (schar *)0, (int *)0);
else pline("Unavailable command '^O'.");
return 0;
}