From b1eb6da6fab27b215ffd339ccef7e43169ad0a17 Mon Sep 17 00:00:00 2001 From: Borja Lorente Date: Tue, 16 Aug 2016 10:40:46 +0200 Subject: MACVENTURE: Add prefixes to error messages --- engines/macventure/gui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/macventure/gui.cpp') diff --git a/engines/macventure/gui.cpp b/engines/macventure/gui.cpp index 310cf92443..264e577792 100644 --- a/engines/macventure/gui.cpp +++ b/engines/macventure/gui.cpp @@ -152,21 +152,21 @@ void Gui::initGUI() { // Menu _menu = _wm.addMenu(); if (!loadMenus()) - error("Could not load menus"); + error("GUI: Could not load menus"); _menu->setCommandsCallback(menuCommandsCallback, this); _menu->calcDimensions(); loadGraphics(); if (!loadWindows()) - error("Could not load windows"); + error("GUI: Could not load windows"); initWindows(); assignObjReferences(); if (!loadControls()) - error("Could not load controls"); + error("GUI: Could not load controls"); draw(); @@ -960,7 +960,7 @@ WindowData & Gui::findWindowData(WindowReference reference) { if (iter->refcon == reference) return *iter; - error("Could not locate the desired window data"); + error("GUI: Could not locate the desired window data"); } Graphics::MacWindow * Gui::findWindow(WindowReference reference) { -- cgit v1.2.3