Message-ID: <35134F49.C51C6867@geocities.com> Date: Sat, 21 Mar 1998 00:25:29 -0500 From: Dan Chak MIME-Version: 1.0 To: DJGPP Subject: "jump to case label" message; please help me! Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Precedence: bulk I have the following code in a program of mine which (to me) seems to be harmless. However, I get an error with DJGPP that says "Error: Jump to case label" for the line that reads "case 3:". Can anyone help me figure out why?? int choice; do { choice = mainMenu->update(); switch (choice) { case 2: BITMAP * card = load_pcx("10d.pcx", myPal); show_mouse(NULL); masked_blit(card, screen, 0, 0, 50, 50, 115, 177); show_mouse(screen); delete card; choice = 0; break; case 3: delete mainMenu; delay(2); break; } } while (!choice); Thanks, Dan Chak chakster AT geocities DOT com