From d66d4807b3a81bd93ae70d6e8dd68cbeb4a77e6d Mon Sep 17 00:00:00 2001 From: CPunch Date: Tue, 5 Sep 2023 14:43:50 -0500 Subject: [PATCH] removed debug prints, oops --- src/cobj.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cobj.c b/src/cobj.c index ba47eda..11ab64b 100644 --- a/src/cobj.c +++ b/src/cobj.c @@ -511,8 +511,6 @@ bool cosmoO_getIString(CState *state, CObjObject *object, int flag, CValue *val) CObjObject *obj = object; do { - printf("getting flag %d from obj: %p\n", flag, obj); - fflush(stdout); if (rawgetIString(state, obj, flag, val)) return true; } while ((obj = obj->_obj.proto) != NULL); // sets obj to it's proto and compares it to NULL