Differences From Artifact [9877da8adc]:
- File picture.c — part of check-in [c1b51c9521] at 2021-03-06 05:22:07 on branch trunk — Add the global examine command (user: user, size: 23569) [annotate] [blame] [check-ins using]
To Artifact [370dd766bc]:
- File picture.c — part of check-in [cae837d7b3] at 2021-03-23 07:29:49 on branch trunk — Add a missing "break" in the handling of popup messages (user: user, size: 23582) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
775 776 777 778 779 780 781 782 783 784 785 786 787 788 | if(*p) p++; x+=24; break; case 31: pop_char(x,y,li+ln,c,*p); if(*p) p++; x+=8; default: pop_char(x,y,li+ln,c,p[-1]); x+=8; break; } SDL_UnlockSurface(screen); } | > | 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 | if(*p) p++; x+=24; break; case 31: pop_char(x,y,li+ln,c,*p); if(*p) p++; x+=8; break; default: pop_char(x,y,li+ln,c,p[-1]); x+=8; break; } SDL_UnlockSurface(screen); } |
︙ | ︙ |