aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-09-26 22:50:35 +0000
committerWillem Jan Palenstijn2009-09-26 22:50:35 +0000
commita49da8381b25d3d536e28a906a16093ad23d2993 (patch)
tree938902e2a859b46b30c70baadd00dc4149a08e29 /engines
parent00504a893b3039ede85668243ef9cf54901494c3 (diff)
downloadscummvm-rg350-a49da8381b25d3d536e28a906a16093ad23d2993.tar.gz
scummvm-rg350-a49da8381b25d3d536e28a906a16093ad23d2993.tar.bz2
scummvm-rg350-a49da8381b25d3d536e28a906a16093ad23d2993.zip
SCI: Fix copy/paste error
svn-id: r44382
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/kfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kfile.cpp b/engines/sci/engine/kfile.cpp
index df4e3274af..53c28d2258 100644
--- a/engines/sci/engine/kfile.cpp
+++ b/engines/sci/engine/kfile.cpp
@@ -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;
}