Missing the top line in character file dumps.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Kyle
    Rookie
    • Jul 2009
    • 15

    Missing the top line in character file dumps.

    Hey, I think I found a possible typo in files.c.

    Code:
    	/* Begin dump */
    	file_putf(fp, "  [%s %s Character Dump]\n\n",
    	        VERSION_NAME, VERSION_STRING);
    
    
    	/* Display player */
    	display_player(0);
    
    	/* Dump part of the screen */
    -       for (y = 2; y < 23; y++)
    +       for (y = 1; y < 23; y++)
    	{
    		/* Dump each row */
    		for (x = 0; x < 79; x++)
    		{
    			/* Get the attr/char */
    			(void)(Term_what(x, y, &a, &c));
    Because this is what currently happens at the top of character file dumps.

    Code:
      [Angband 3.1.0 beta Character Dump]
    
     Sex    Female       Age            104   STR:     10  -1  -5  +0      4
     Race   Elf          Height          54   INT:     10  +2  +3  +0     15
    But it should be

    Code:
      [Angband 3.1.0 beta Character Dump]
    
     Name   Weth                                     Self  RB  CB  EB   Best
     Sex    Female       Age            104   STR:     10  -1  -5  +0      4
     Race   Elf          Height          54   INT:     10  +2  +3  +0     15
  • takkaria
    Veteran
    • Apr 2007
    • 1951

    #2
    Yup, it'll be fixed real soon now, when 3.1.1 is out, which is any hour...
    takkaria whispers something about options. -more-

    Comment

    • Kyle
      Rookie
      • Jul 2009
      • 15

      #3
      Sorry, has this already been addressed? I just "came home" to Angband and found these forums a few days ago.

      Comment

      Working...
      😀
      😂
      🥰
      😘
      🤢
      😎
      😞
      😡
      👍
      👎