diff options
author | Max Horn | 2002-07-15 22:32:15 +0000 |
---|---|---|
committer | Max Horn | 2002-07-15 22:32:15 +0000 |
commit | b215a7720ae0c7e73842af8ec65dae6e5f4e3ebe (patch) | |
tree | 714d7749683ec1e89d9630f1b3c05cbed71aaa04 | |
parent | eb3318e291386988eaba2ba1ed642d13a4e1c713 (diff) | |
download | scummvm-rg350-b215a7720ae0c7e73842af8ec65dae6e5f4e3ebe.tar.gz scummvm-rg350-b215a7720ae0c7e73842af8ec65dae6e5f4e3ebe.tar.bz2 scummvm-rg350-b215a7720ae0c7e73842af8ec65dae6e5f4e3ebe.zip |
no need to error out on Flashlight
svn-id: r4559
-rw-r--r-- | scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scummvm.cpp b/scummvm.cpp index 13f4d9e81f..066d72c965 100644 --- a/scummvm.cpp +++ b/scummvm.cpp @@ -337,7 +337,7 @@ int Scumm::scummLoop(int delta) if (!(_vars[VAR_CURRENT_LIGHTS] & LIGHTMODE_screen) && _vars[VAR_CURRENT_LIGHTS] & LIGHTMODE_flashlight) { - error("Flashlight not implemented in this version"); + warning("Flashlight not implemented in this version"); } processActors(); |