GMdsam icon indicating copy to clipboard operation
GMdsam copied to clipboard

Switch statement indexing reversed

Open carolc24 opened this issue 8 years ago • 0 comments

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; }

carolc24 avatar Oct 16 '16 04:10 carolc24