diff options
author | Martin Kiewitz | 2010-01-04 23:31:50 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-04 23:31:50 +0000 |
commit | 6c001b7ffd93a151a7309e4a23bb3d7e6c54829a (patch) | |
tree | cb41ad3ddcb5ae16976202cefc495ae21077f24d | |
parent | 01d68c7eafa4e2851076f69976948181da2b297e (diff) | |
download | scummvm-rg350-6c001b7ffd93a151a7309e4a23bb3d7e6c54829a.tar.gz scummvm-rg350-6c001b7ffd93a151a7309e4a23bb3d7e6c54829a.tar.bz2 scummvm-rg350-6c001b7ffd93a151a7309e4a23bb3d7e6c54829a.zip |
SCI: removing warning() from kFrameOut
svn-id: r46998
-rw-r--r-- | engines/sci/gui/gui.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index a477f11595..b8c9204bc1 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -900,10 +900,6 @@ void SciGui::frameOut() { uint16 topPos = GET_SEL32V(_s->_segMan, viewObj, y); int16 priority = GET_SEL32V(_s->_segMan, viewObj, priority); int16 signal = GET_SEL32V(_s->_segMan, viewObj, signal); - int16 plane = GET_SEL32V(_s->_segMan, viewObj, plane); - - warning("viewId %d plane %X", viewId, plane); - //int16 control = 0; // Theoretically, leftPos and topPos should be sane // Apparently, sometimes they're not, therefore I'm adding some sanity checks here so that |