X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fscreens.c;h=977ac133f826daf2044cd402e2617dec5c25b1e7;hb=6194c86e915d57678987f67daba966e477d124bc;hp=5fe48e3d68050d3670c67895a49d3ad2e848b2d5;hpb=36514297b2eb8aaf1a8bb4ca2855bd690de811f8;p=rocksndiamonds.git diff --git a/src/screens.c b/src/screens.c index 5fe48e3d..977ac133 100644 --- a/src/screens.c +++ b/src/screens.c @@ -5428,15 +5428,12 @@ static void DrawScoreInfo_Content(int entry_nr) struct ScoreEntry *entry = &scores.entry[entry_nr]; char *pos_text = getHallOfFameRankText(entry_nr, 0); char *tape_date = getHallOfFameTapeDateText(entry); - int font_title = MENU_INFO_FONT_TITLE; int font_head = MENU_INFO_FONT_HEAD; int font_text = MENU_INFO_FONT_TEXT; int font_foot = MENU_INFO_FONT_FOOT; - int spacing_title = menu.headline1_spacing[GAME_MODE_SCOREINFO]; int spacing_para = menu.paragraph_spacing[GAME_MODE_SCOREINFO]; int spacing_line = menu.line_spacing[GAME_MODE_SCOREINFO]; int xstep = getFontWidth(font_text); - int ystep_title = getMenuTextStep(spacing_title, font_title); int ystep_para = getMenuTextStep(spacing_para, font_text); int ystep_line = getMenuTextStep(spacing_line, font_text); int xstart = mSX - SX + menu.left_spacing[GAME_MODE_SCOREINFO]; @@ -5473,9 +5470,6 @@ static void DrawScoreInfo_Content(int entry_nr) drawChooseTreeHead(score_entries); drawChooseTreeInfo(score_entries); - DrawTextSCentered(ystart, font_title, "Score Information:"); - ystart += ystep_title; - DrawTextF(xstart1, ystart, font_head, "Level Set"); lines = DrawTextBufferS(xstart2, ystart, leveldir_current->name, font_text, max_chars_per_line, -1, max_lines_per_text, 0, -1, @@ -9821,6 +9815,13 @@ static void CreateScreenMenubuttons(void) // special compatibility handling for "BD2K3" graphics set if (strPrefix(leveldir_current->identifier, "BD2K3")) x = SX + TILESIZE + MINI_TILESIZE; + + // special compatibility handling for "jue0" graphics set + if (strPrefix(artwork.gfx_current_identifier, "jue0")) + { + x = SX + SXSIZE - 4 * TILESIZE; + y = SY + SYSIZE - 3 * TILESIZE; + } } }