Skip to content

Commit

Permalink
Fix cstealth mod
Browse files Browse the repository at this point in the history
  • Loading branch information
Beyley committed Oct 18, 2023
1 parent bcc3d5a commit 624247f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game/screens/gameplay.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1596,8 +1596,8 @@ fn drawGameplayLyrics(render_state: Screen.RenderState, data: *GameplayData) !vo
}

fn drawKanjiLyrics(render_state: Screen.RenderState, data: *GameplayData) !void {
//Dont draw kanji lyrics when lyrics stealth or stealth challenge is enabled
if (challenge.lyrics_stealth or challenge.stealth) return;
//Dont draw kanji lyrics when lyrics stealth challenge is enabled
if (challenge.lyrics_stealth) return;

//If there are no kanji lyrics, return out
if (data.music.fumen.lyrics_kanji.len == 0) {
Expand Down

0 comments on commit 624247f

Please sign in to comment.