1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-02 02:19:02 +00:00

compile without CAP_INV

This commit is contained in:
Zeno Rogue
2018-02-11 21:39:08 +01:00
parent cab8a0a38f
commit 7ac883c1c2
4 changed files with 12 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ int getnext(const char* s, int& i) {
if(eqs(s+i, natchars[k])) {
i += siz; return 128+k;
}
printf("Unknown character in: '%s'\n", s);
printf("Unknown character in: '%s' at position %d\n", s, i);
i ++; return '?';
}