CodyIT@programming.dev to Programmer Humor@programming.devEnglish · 12 days agoThe biggest mystery known to mankindprogramming.devimagemessage-square26linkfedilinkarrow-up129arrow-down13
arrow-up126arrow-down1imageThe biggest mystery known to mankindprogramming.devCodyIT@programming.dev to Programmer Humor@programming.devEnglish · 12 days agomessage-square26linkfedilink
minus-squareatopi@piefed.blahaj.zonelinkfedilinkEnglisharrow-up0·12 days agoa while ago, during a game jam, while i was making some of the worst gdscript i have ever seen, i have encountered a bug after adding a print to see the value of a variable, the bug disappeared. Confused, i commented out the line i just added. The bug was still fixed i removed the comment. The bug reappeared
minus-squareWillem@kutsuya.devlinkfedilinkarrow-up2·11 days agoprinting to a console could enforce a flush, sync thread or other shenanigans. usually setting a breakpoint would have the same effect and gives me the suggestion of a threading issue.
a while ago, during a game jam, while i was making some of the worst gdscript i have ever seen, i have encountered a bug
after adding a print to see the value of a variable, the bug disappeared. Confused, i commented out the line i just added. The bug was still fixed
i removed the comment. The bug reappeared
printing to a console could enforce a flush, sync thread or other shenanigans.
usually setting a breakpoint would have the same effect and gives me the suggestion of a threading issue.