mirror of
https://github.com/Oibaf66/fbzx-wii.git
synced 2024-12-26 08:31:55 +01:00
Fix bug in auto screen extraction
This commit is contained in:
parent
467f950a3f
commit
60686fdb58
Binary file not shown.
@ -642,7 +642,7 @@ int extract_screen_tap (char *screen_memory, FILE * fichero) {
|
|||||||
{
|
{
|
||||||
retval=fread (value, 1, longitud-1, fichero);
|
retval=fread (value, 1, longitud-1, fichero);
|
||||||
if (retval!=(longitud-1)) {retorno=1;break;}
|
if (retval!=(longitud-1)) {retorno=1;break;}
|
||||||
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value+1, 6912);rewind_tape (fichero,1);return 0;}
|
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value, 6912);rewind_tape (fichero,1);return 0;}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -656,7 +656,7 @@ int extract_screen_tap (char *screen_memory, FILE * fichero) {
|
|||||||
{
|
{
|
||||||
retval=fread (value, 1, longitud-1, fichero);
|
retval=fread (value, 1, longitud-1, fichero);
|
||||||
if (retval!=(longitud-1)) {retorno=1;break;}
|
if (retval!=(longitud-1)) {retorno=1;break;}
|
||||||
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value+1, 6912);rewind_tape (fichero,1);return 0;}
|
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value, 6912);rewind_tape (fichero,1);return 0;}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default: //Custom data
|
default: //Custom data
|
||||||
@ -664,7 +664,7 @@ int extract_screen_tap (char *screen_memory, FILE * fichero) {
|
|||||||
{
|
{
|
||||||
retval=fread (value, 1, longitud-1, fichero);
|
retval=fread (value, 1, longitud-1, fichero);
|
||||||
if (retval!=(longitud-1)) {retorno=1;break;}
|
if (retval!=(longitud-1)) {retorno=1;break;}
|
||||||
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value+1, 6912);rewind_tape (fichero,1);return 0;}
|
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value, 6912);rewind_tape (fichero,1);return 0;}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -721,7 +721,7 @@ int extract_screen_tzx (char *screen_memory, FILE * fichero)
|
|||||||
{
|
{
|
||||||
retval=fread (value, 1, longitud-1, fichero);
|
retval=fread (value, 1, longitud-1, fichero);
|
||||||
if (retval!=(longitud-1)) {retorno=1;break;}
|
if (retval!=(longitud-1)) {retorno=1;break;}
|
||||||
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value+1, 6912);rewind_tape (fichero,1);return 0;}
|
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value, 6912);rewind_tape (fichero,1);return 0;}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -735,7 +735,7 @@ int extract_screen_tzx (char *screen_memory, FILE * fichero)
|
|||||||
{
|
{
|
||||||
retval=fread (value, 1, longitud-1, fichero);
|
retval=fread (value, 1, longitud-1, fichero);
|
||||||
if (retval!=(longitud-1)) {retorno=1;break;}
|
if (retval!=(longitud-1)) {retorno=1;break;}
|
||||||
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value+1, 6912);rewind_tape (fichero,1);return 0;}
|
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value, 6912);rewind_tape (fichero,1);return 0;}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default: //Custom data
|
default: //Custom data
|
||||||
@ -743,7 +743,7 @@ int extract_screen_tzx (char *screen_memory, FILE * fichero)
|
|||||||
{
|
{
|
||||||
retval=fread (value, 1, longitud-1, fichero);
|
retval=fread (value, 1, longitud-1, fichero);
|
||||||
if (retval!=(longitud-1)) {retorno=1;break;}
|
if (retval!=(longitud-1)) {retorno=1;break;}
|
||||||
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value+1, 6912);rewind_tape (fichero,1);return 0;}
|
if ((longitud==6914) || (longitud==49154)) {memcpy(screen_memory, value, 6912);rewind_tape (fichero,1);return 0;}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user