SCI: Fix copy/paste error

svn-id: r44382
This commit is contained in:
Willem Jan Palenstijn 2009-09-26 22:50:35 +00:00
parent 00504a893b
commit a49da8381b

View File

@ -241,7 +241,7 @@ void fwrite_wrapper(EngineState *s, int handle, char *data, int length) {
return;
if (!f->_out) {
error("fgets_wrapper: Trying to write to file '%s' opened for reading", f->_name.c_str());
error("fwrite_wrapper: Trying to write to file '%s' opened for reading", f->_name.c_str());
return;
}