Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 6th, 2012  |  syntax: C++  |  size: 0.68 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.                                         while (highscoreActive == true)
  2.                                         {
  3.                                                 menu1.createhighscoremenu();
  4.                                                 menu1.checkmousehoverdifficulty();
  5.                                                 int highscoreselect = menu1.checkmouseclickhighscore();
  6.                                                 if (highscoreselect!=0)
  7.                                                 {
  8.                                                         if (highscoreselect == 4)
  9.                                                         {
  10.                                                                 submenuActive = false;
  11.                                                         }
  12.                                                         else
  13.                                                         {
  14.                                                                 int tempchoice = 0;
  15.                                                                 while (tempchoice == 0)
  16.                                                                 {
  17.                                                                         menu1.createhighscoretables(highscoreselect);
  18.                                                                         menu1.checkmousehoverhighscoretable();
  19.                                                                         tempchoice = menu1.checkmouseclickhighscoretable();
  20.                                                                 }
  21.                                                         }
  22.                                                         submenuActive = false;
  23.                                                         highscoreActive = false; // could also use break
  24.                                                 }
  25.                                         }