X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fscreens.c;h=a0a06dbcebc02697d1721b1bc31b33fa44e6187e;hb=21c25c56356db2138816a0716d73934ac3893e89;hp=5405e49bc747abf3a4c4fea810ca4027aaf63e5e;hpb=ef86a9fafe44eeffdda3a301ca4a2f586602f481;p=rocksndiamonds.git diff --git a/src/screens.c b/src/screens.c index 5405e49b..a0a06dbc 100644 --- a/src/screens.c +++ b/src/screens.c @@ -44,6 +44,7 @@ void DrawHeadline() void DrawMainMenu() { int i; + char *name_text = (!options.network && setup.team_mode ? "Team:" : "Name:"); FadeSounds(); GetPlayerConfig(); @@ -51,7 +52,7 @@ void DrawMainMenu() ClearWindow(); DrawHeadline(); - DrawText(SX + 32, SY + 2*32, "Name:", FS_BIG, FC_GREEN); + DrawText(SX + 32, SY + 2*32, name_text, FS_BIG, FC_GREEN); DrawText(SX + 6*32, SY + 2*32, setup.alias_name, FS_BIG, FC_RED); DrawText(SX + 32, SY + 3*32, "Level:", FS_BIG, FC_GREEN); DrawText(SX + 11*32, SY + 3*32, int2str(level_nr,3), FS_BIG, @@ -70,14 +71,8 @@ void DrawMainMenu() DrawGraphic(10,3,GFX_PFEIL_L); DrawGraphic(14,3,GFX_PFEIL_R); - DrawText(SX+40+16,SY+326,"A Game by Artsoft Entertainment",FS_SMALL,FC_BLUE); - - /* - DrawText(SX+40+16,SY+344,"Graphics: Deluxe Paint IV Amiga", - FS_SMALL,FC_BLUE); - DrawText(SX+60+16,SY+362,"Sounds: AudioMaster IV Amiga", - FS_SMALL,FC_BLUE); - */ + DrawText(SX+56, SY+326, "A Game by Artsoft Entertainment", + FS_SMALL, FC_RED); if (leveldir[leveldir_nr].name) { @@ -250,8 +245,7 @@ void HandleMainMenu(int mx, int my, int dx, int dy, int button) game_status = EXITGAME; } - if (!button) - redraw = TRUE; + redraw = TRUE; } } BackToFront();