From ac716ad843e386e69a2c865556a4af6e693f9530 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 20 Feb 2009 20:11:12 +0000 Subject: Started conversion of debug messages and debug levels to the ScummVM equivalents. Removed the "stubs" and "warnings" debug levels and replaced such kinds of messages with normal warnings svn-id: r38617 --- engines/sci/engine/kpathing.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/sci/engine/kpathing.cpp') diff --git a/engines/sci/engine/kpathing.cpp b/engines/sci/engine/kpathing.cpp index 6a9cf8f80c..9d400d8aaa 100644 --- a/engines/sci/engine/kpathing.cpp +++ b/engines/sci/engine/kpathing.cpp @@ -252,7 +252,7 @@ static void draw_input(state_t *s, reg_t poly_list, Common::Point start, Common: list = LOOKUP_LIST(poly_list); if (!list) { - SCIkwarn(SCIkWARNING, "Could not obtain polygon list\n"); + warning("Could not obtain polygon list"); return; } @@ -298,7 +298,7 @@ static void print_input(state_t *s, reg_t poly_list, Common::Point start, Common list = LOOKUP_LIST(poly_list); if (!list) { - SCIkwarn(SCIkWARNING, "Could not obtain polygon list\n"); + warning("Could not obtain polygon list"); return; } @@ -1522,7 +1522,7 @@ reg_t kAvoidPath(state_t *s, int funct_nr, int argc, reg_t *argv) { } default: - SCIkwarn(SCIkWARNING, "Unknown AvoidPath subfunction %d\n", + warning("Unknown AvoidPath subfunction %d", argc); return NULL_REG; break; -- cgit v1.2.3