mirror of
https://git.sr.ht/~crc_/retroforth
synced 2024-11-16 19:48:56 +01:00
fix retro/javascript build tool
FossilOrigin-Name: 1fc862de181538aca9035dbe29ca8867288ef516dd418eda84bafabd489a7d3d
This commit is contained in:
parent
b5d7cba455
commit
1662e88fe5
1 changed files with 1 additions and 2 deletions
|
@ -69,7 +69,6 @@ void extract(char *fname, int32_t size) {
|
|||
fp = fopen(fname, "r");
|
||||
if (fp == NULL)
|
||||
return;
|
||||
printf("1");
|
||||
while (!feof(fp)) {
|
||||
read_line(fp, buffer);
|
||||
if (strcmp(buffer, "<<<IMAGE>>>") == 0) {
|
||||
|
@ -102,7 +101,7 @@ int main(int argc, char **argv) {
|
|||
else
|
||||
size = ngaLoadImage("ngaImage");
|
||||
|
||||
extract("interfaces/retro12.html", size);
|
||||
extract("source/interfaces/alternates/retro12.html", size);
|
||||
|
||||
exit(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue