GMdsam
GMdsam copied to clipboard
Switch statement indexing reversed
When the decompiler prints out switch statements, it prints out each case in reverse. So switch(arg) { case A: print A; case B: print B; } would turn into switch(arg) { case B: print A; case A: print B; }