mirror of
https://github.com/scummvm/scummex.git
synced 2026-05-21 05:40:51 +00:00
Added a menu item to display the boxes on the room image
This commit is contained in:
+8
-2
@@ -16,7 +16,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* $Header: /Users/sev/projects/sc/s/scummvm/scummex/scummex.cpp,v 1.15 2003/09/22 15:43:24 yoshizf Exp $
|
||||
* $Header: /Users/sev/projects/sc/s/scummvm/scummex/scummex.cpp,v 1.16 2003/09/22 18:25:16 yoshizf Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -274,7 +274,7 @@ void ScummEX::paletteDraw()
|
||||
void ScummEX::bgDraw()
|
||||
{
|
||||
_image = new Image();
|
||||
_image->drawBG(_input, _blockTable, _blockId, "");
|
||||
_image->drawBG(_input, _blockTable, _blockId);
|
||||
}
|
||||
|
||||
void ScummEX::SmushFrameDraw()
|
||||
@@ -295,6 +295,12 @@ void ScummEX::boxesDraw()
|
||||
_image->drawBoxes(_blockTable, _blockId, _input);
|
||||
}
|
||||
|
||||
void ScummEX::boxesDrawOverlay()
|
||||
{
|
||||
_image = new Image();
|
||||
_image->drawBoxes(_blockTable, _blockId, _input, 0);
|
||||
}
|
||||
|
||||
void ScummEX::FileInfo() {
|
||||
int fsize;
|
||||
fsize = _input.size();
|
||||
|
||||
Reference in New Issue
Block a user