diff options
author | Peter Kohaut | 2019-02-07 23:54:47 +0100 |
---|---|---|
committer | Peter Kohaut | 2019-02-08 21:00:52 +0100 |
commit | a0e9b09cd9b9be59dcf4c90df152fba8b55390cd (patch) | |
tree | 1a35b632f0d8fe4512200b8be5fdf98fdb032f14 /engines/bladerunner/ui | |
parent | 66dc8afaa34c5031b245b18c87a520700bcb5569 (diff) | |
download | scummvm-rg350-a0e9b09cd9b9be59dcf4c90df152fba8b55390cd.tar.gz scummvm-rg350-a0e9b09cd9b9be59dcf4c90df152fba8b55390cd.tar.bz2 scummvm-rg350-a0e9b09cd9b9be59dcf4c90df152fba8b55390cd.zip |
BLADERUNNER: Removed unnecessary debugging code
Diffstat (limited to 'engines/bladerunner/ui')
-rw-r--r-- | engines/bladerunner/ui/esper.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/bladerunner/ui/esper.cpp b/engines/bladerunner/ui/esper.cpp index 51e956cbb2..4b6b7f04c0 100644 --- a/engines/bladerunner/ui/esper.cpp +++ b/engines/bladerunner/ui/esper.cpp @@ -246,7 +246,7 @@ void ESPER::tick() { } void ESPER::resume() { - //TODO + // TODO } void ESPER::addPhoto(const char *name, int photoId, int shapeId) { @@ -524,14 +524,11 @@ void ESPER::activate(bool withOpening) { void ESPER::setStateMain(EsperMainStates state) { if (_isOpen) { _stateMain = state; - debug("ESPER main state: %d", _stateMain); - } } void ESPER::setStatePhoto(EsperPhotoStates state) { _statePhoto = state; - debug("ESPER photo state: %d", _statePhoto); } void ESPER::wait(int timeout) { |