removed debug prints, oops

This commit is contained in:
CPunch 2023-09-05 14:43:50 -05:00 committed by cpunch
parent 1fcb35168f
commit d66d4807b3
1 changed files with 0 additions and 2 deletions

View File

@ -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