TEMP 884 B

123456789101112131415161718192021222324252627282930
  1. if ( EUROgameType == EURO_championship )
  2. {
  3. if ( EUROmatchUsers > 1 )
  4. {
  5. Image_Heights[UBAR_PANL+Top] = PlrSetupPanelHght[ EUROmatchUsers ];
  6. DrawIMAGE( &FrontendBackgroundDEFN, &FrontendTextureDEFN,
  7. UBAR_PANL+Top, 277, 131, NO_BOX, spritecopy );
  8. DrawIMAGE( &FrontendBackgroundDEFN, &FrontendTextureDEFN,
  9. UBAR_PANL+Btm, 277, 131+(Image_Heights[UBAR_PANL+Top]), NO_BOX, spritecopy );
  10. char c = 0;
  11. for ( char p=0; p < EUROnoOfMatchPlyrs; p ++ )
  12. {
  13. UserSetupList[p] = -1;
  14. if ( p!=user )
  15. {
  16. DisplayString( 406-(PixelLengthOfString( GetTEXT( PSET_LBLS+p ), SMALL_FONT) ) /2,
  17. (131+19)+(c*23),
  18. ( GetTEXT( PSET_LBLS+p )) ,
  19. SMALL_FONT, 62, USER_SETUP_BOX+c, &FrontendBackgroundDEFN, &FrontendTextureDEFN );
  20. UserSetupList[c] = p;
  21. c++;
  22. }
  23. }
  24. }
  25. }