Skip to content

Commit

Permalink
TWINE: converted error hqr related error into warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed Oct 31, 2020
1 parent 1f8ea6f commit 6e5a81b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/twine/hqr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ int32 entrySize(const char *filename, int32 index) {

Common::File file;
if (!file.open(filename)) {
error("HQR: Could not open %s", filename);
warning("HQR: Could not open %s", filename);
return 0;
}

uint32 headerSize;
Expand Down

0 comments on commit 6e5a81b

Please sign in to comment.