Skip to content

Commit

Permalink
Change judge dividers in online leaderboard for better compatibility …
Browse files Browse the repository at this point in the history
…with custom fonts
  • Loading branch information
yeslyko authored and poco0317 committed Dec 25, 2024
1 parent 37d41eb commit 1c816f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ local function scoreitem(pn, i)
end,
UpdateNetScoreCommand = function(self)
self:settextf(
"%d / %d / %d / %d / %d / %d",
"%d | %d | %d | %d | %d | %d",
multiscores[i].highscore:GetTapNoteScore("TapNoteScore_W1"),
multiscores[i].highscore:GetTapNoteScore("TapNoteScore_W2"),
multiscores[i].highscore:GetTapNoteScore("TapNoteScore_W3"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ local function scoreitem(pn, index, scoreIndex, drawindex)
if hsTable[index] == nil then return end
if #hsTable >= 1 and index >= 1 then
self:settextf(
"%d / %d / %d / %d / %d / %d",
"%d | %d | %d | %d | %d | %d",
hsTable[index]:GetTapNoteScore("TapNoteScore_W1"),
hsTable[index]:GetTapNoteScore("TapNoteScore_W2"),
hsTable[index]:GetTapNoteScore("TapNoteScore_W3"),
Expand Down
2 changes: 1 addition & 1 deletion src/Etterna/Models/HighScore/HighScore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1648,7 +1648,7 @@ class LunaHighScore : public Luna<HighScore>

static auto GetJudgmentString(T* p, lua_State* L) -> int
{
const auto doot = ssprintf("%d I %d I %d I %d I %d I %d x%d",
const auto doot = ssprintf("%d | %d | %d | %d | %d | %d x%d",
p->GetTapNoteScore(TNS_W1),
p->GetTapNoteScore(TNS_W2),
p->GetTapNoteScore(TNS_W3),
Expand Down

0 comments on commit 1c816f0

Please sign in to comment.