Skip to content

Commit

Permalink
Fix: Note Size
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleYang0531 committed Aug 9, 2024
1 parent 28f5a7d commit b01c035
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/constants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ double tipRatio = 2015.0 / 157.0;
#if play || watch
let strictMode = LevelOption.get(Options.StrictMode);
let levelSpeed = LevelOption.get(Options.LevelSpeed);
let noteWidth = baseNoteWidth * LevelOption.get(Options.NoteSize);
let noteWidth2 = baseNoteWidth * LevelOption.get(Options.NoteSize);
let hasSFX = LevelOption.get(Options.HasSFX);
let hasSimul = LevelOption.get(Options.HasSimul);
let hasIndicator = LevelOption.get(Options.HasIndicator);
Expand All @@ -65,10 +65,10 @@ class stage {
let t = h / 2;
let b = -1 * h / 2;
}stage;

#endif

#if play || watch
let noteWidth = noteWidth2 / (3.25 / stage.w);
class judgment {
public:

Expand Down

0 comments on commit b01c035

Please sign in to comment.