I have two save files that I can't open, one from a dead character and one from a live character. Zipped save directory is attached.
NPP 7.0 Beta-2 : Save files broken
Collapse
X
-
Sorry about that.
Are you playing NPPAngband or NPPMoria?NPPAngband current home page: http://nppangband.bitshepherd.net/
Source code repository:
https://github.com/nppangband/NPPAngband_QT
Downloads:
https://app.box.com/s/1x7k65ghsmc31usmj329pb8415n1ux57 -
Sorry for the slow response. RL is demanding most of my attention at the moment. The fix is in load.c:
@@ -1147,7 +1147,7 @@ static errr rd_extra(void)
rd_s16b(&p_ptr->lev);
/* Verify player level */
- if ((p_ptr->lev < 1) || (p_ptr->lev > z_info->max_titles))
+ if ((p_ptr->lev < 1) || (p_ptr->lev > z_info->max_level))NPPAngband current home page: http://nppangband.bitshepherd.net/
Source code repository:
https://github.com/nppangband/NPPAngband_QT
Downloads:
https://app.box.com/s/1x7k65ghsmc31usmj329pb8415n1ux57Comment
Comment