From 08e88cb650af6f96bba8b11a09e0d37274bb9a14 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 16:15:58 +0000 Subject: [PATCH] Created new dispatcher subcomponent date 2000.03.30.17.05.00; author rmoore1; state Exp; --- source/components/debugger/dbcmds.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/components/debugger/dbcmds.c b/source/components/debugger/dbcmds.c index 0cb223077..f9c284a69 100644 --- a/source/components/debugger/dbcmds.c +++ b/source/components/debugger/dbcmds.c @@ -116,6 +116,7 @@ #include #include +#include #include #include #include @@ -646,7 +647,7 @@ DbSetMethodData ( return; } - PsxMthStackSetValue (MTH_TYPE_ARG, Index, ObjDesc); + DsMthStackSetValue (MTH_TYPE_ARG, Index, ObjDesc); ObjDesc = WalkState->Arguments[Index].Object; OsdPrintf ("Arg%d: ", Index); DbDisplayInternalObject (ObjDesc); @@ -662,7 +663,7 @@ DbSetMethodData ( return; } - PsxMthStackSetValue (MTH_TYPE_LOCAL, Index, ObjDesc); + DsMthStackSetValue (MTH_TYPE_LOCAL, Index, ObjDesc); ObjDesc = WalkState->LocalVariables[Index].Object; OsdPrintf ("Local%d: ", Index); DbDisplayInternalObject (ObjDesc);