Your most amusing mistakes?
-
Come one and all, tell me your Fuze mistakes and the times you wanted to facepalm because you did something dumb or missed something painfully obvious.
(using = instead of == does not apply, it seems a ton of us fall for that one)
I have a real cracker to start with, can you top it?
I wrote a function in about 7-8 mins and then proceeded to spend over an hour wondering why it didn't work at all. not only that it didn't work but it didn't even throw up an error message.. over an hour I was scratching my head over this function.
When all of a sudden it hit me.. it was a function, and I hadn't called it in my game loop. LOL!
-
I had a good one earlier. I copied a function to try a different version but forgot to comment out the first one. I made a lot of changes but didn't see any difference. This was because it was still calling the original. Doh!
-
@SteveZX81 the amount of times I've done exactly that..