Comment out debug for now

This commit is contained in:
Chris Young 2014-02-10 19:56:22 +00:00
parent 709665e5c0
commit a6fd328405
2 changed files with 2 additions and 2 deletions

View File

@ -362,7 +362,7 @@ uint32 agm_process(Class *cl, Object *o, Msg msg)
while ( (lod->agm = IAmigaGuide->GetAmigaGuideMsg(lod->agHandle)) ) {
switch(lod->agm->agm_Type) {
default:
printf("%d\n", lod->agm->agm_Type);
//printf("%d\n", lod->agm->agm_Type);
break;
}
}

View File

@ -78,6 +78,6 @@ ULONG ami_help_signal(void)
void ami_help_process(void)
{
ULONG ret = IDoMethod(AmigaGuideObject, AGM_PROCESS, NULL);
printf("ret = %d\n", ret); // should be NULL if closed
//printf("ret = %d\n", ret); // should be NULL if closed
}