From 1662e88fe5dc7095fe43cd30b933f4eb40400815 Mon Sep 17 00:00:00 2001 From: crc Date: Thu, 29 Aug 2019 14:22:19 +0000 Subject: [PATCH] fix retro/javascript build tool FossilOrigin-Name: 1fc862de181538aca9035dbe29ca8867288ef516dd418eda84bafabd489a7d3d --- tools/injectimage-js.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/injectimage-js.c b/tools/injectimage-js.c index 8f36e5d..db5e372 100644 --- a/tools/injectimage-js.c +++ b/tools/injectimage-js.c @@ -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, "<<>>") == 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); }