• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

SOLVED YYC bugged, VM works?

Neptune

Member
I don't normally have any issues with the YYC, however currently the YYC is running differently than the VM.

Currently, some functionality is bugged in a YYC run 100% of the time, and working properly in a VM run 100% of the time.
I'm trying to pinpoint exactly what the YYC does not like, but it is difficult, because it is not flagging anything.

Any ideas what might cause this difference?
Thanks :)

1596210072589.png
 
Last edited:

Neptune

Member
Errr I had a logical coding error, but even so, they interpreted it differently.


GML:
//How it was written
if !a != b {}

//How it was intended to be written
if a != b {}

//YYC interpretation
if !a != b {}

//VM interpretation
if a != b
 

Neptune

Member
That is honestly really good advice when weird crap happens šŸ¤£
However, this case was my own fault!
 
Top