File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -386,6 +386,19 @@ void DrawMultiplayerTarget(MS_TARGET *target)
386
386
{
387
387
tv .vx = player [gPlayerWithTheFlag ].pos [0 ];
388
388
tv .vz = player [gPlayerWithTheFlag ].pos [2 ];
389
+
390
+ if (gPlayerWithTheFlag == 0 )
391
+ {
392
+ r = 128 ;
393
+ g = 0 ;
394
+ b = 0 ;
395
+ }
396
+ else if (gPlayerWithTheFlag == 1 )
397
+ {
398
+ r = 0 ;
399
+ g = 128 ;
400
+ b = 0 ;
401
+ }
389
402
}
390
403
391
404
break ;
Original file line number Diff line number Diff line change @@ -631,9 +631,9 @@ void DrawDrivingGameOverlays(void)
631
631
sprintf (string , "%d" , gPlayerScore .items );
632
632
PrintString (string , x + 3 , 16 );
633
633
634
- x = PrintString (G_LTXT (GTXT_Flags ), gOverlayXPos , 132 );
634
+ x = PrintString (G_LTXT (GTXT_Flags ), gOverlayXPos , SCREEN_H / 2 + 12 );
635
635
sprintf (string , "%d" , gPlayerScore .P2items );
636
- PrintString (string , x + 3 , SCREEN_H / 2 + 4 );
636
+ PrintString (string , x + 3 , SCREEN_H / 2 + 12 );
637
637
break ;
638
638
case GAME_SECRET :
639
639
y = 36 ;
You can’t perform that action at this time.
0 commit comments