diff options
-rw-r--r-- | simon/simon.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index ce05f73b66..1e012df780 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -7631,8 +7631,10 @@ void SimonState::read_vga_from_datfile_1(uint vga_id) { sprintf(buf, "%.3d%d.VGA", vga_id>>1, (vga_id&1)+1); in = fopen_maybe_lowercase(buf); - if (in==NULL) - error("read_vga_from_datfile_1: cannot open %s", buf); + if (in==NULL) { + warning("read_vga_from_datfile_1: cannot open %s", buf); + return; + } fseek(in, 0, SEEK_END); size = ftell(in); |