Work with unix line endings on display ansi
This commit is contained in:
parent
dd1d4d4eaa
commit
209c8b932c
@ -296,14 +296,20 @@ void s_displayansi_pause(char *file, int pause) {
|
|||||||
char c;
|
char c;
|
||||||
char ch;
|
char ch;
|
||||||
int lines = 0;
|
int lines = 0;
|
||||||
|
char lastch = 0;
|
||||||
|
|
||||||
fptr = fopen(file, "r");
|
fptr = fopen(file, "r");
|
||||||
if (!fptr) {
|
if (!fptr) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
c = fgetc(fptr);
|
c = fgetc(fptr);
|
||||||
while (!feof(fptr) && c != 0x1a) {
|
while (!feof(fptr) && c != 0x1a) {
|
||||||
|
if (c == '\n' && lastch != '\r') {
|
||||||
|
s_putchar('\r');
|
||||||
|
}
|
||||||
s_putchar(c);
|
s_putchar(c);
|
||||||
|
|
||||||
|
lastch = c;
|
||||||
|
|
||||||
if (pause) {
|
if (pause) {
|
||||||
if (c == '\n') {
|
if (c == '\n') {
|
||||||
|
Reference in New Issue
Block a user