diff --git a/.gitignore b/.gitignore index e1e1c7521b..501ccb28c4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ .vs .idea /[Bb]uild +/out/ # Ignore executables (Linux, macOS, Windows) /Etterna diff --git a/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/MPscoreboard.lua b/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/MPscoreboard.lua index c931b7c990..cc336c684e 100644 --- a/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/MPscoreboard.lua +++ b/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/MPscoreboard.lua @@ -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"), diff --git a/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/scoreboard.lua b/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/scoreboard.lua index 970e86c868..c683fb14d7 100644 --- a/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/scoreboard.lua +++ b/Themes/Til Death/BGAnimations/ScreenEvaluation decorations/scoreboard.lua @@ -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"), diff --git a/src/Etterna/Models/HighScore/HighScore.cpp b/src/Etterna/Models/HighScore/HighScore.cpp index 918578928a..9196228b71 100644 --- a/src/Etterna/Models/HighScore/HighScore.cpp +++ b/src/Etterna/Models/HighScore/HighScore.cpp @@ -1648,7 +1648,7 @@ class LunaHighScore : public Luna 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),