mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-02-20 20:41:21 +01:00
Only show engine time
This commit is contained in:
parent
39902263d9
commit
44079dd68c
@ -18,6 +18,9 @@
|
||||
- lane order
|
||||
- color notes according to quantization, colors are customizable and saved
|
||||
- cursor height
|
||||
- Status Bar
|
||||
- Snap color is now shown next to the value
|
||||
- Don't show distinct music file offset and engine time
|
||||
- Frendlier error message when the UI font is not found in the assets folder
|
||||
- Playback position is kept instead of being reset to zero when you change charts or reload the audio file
|
||||
- New menu `Settings > Editor`, allows setting
|
||||
|
@ -1022,13 +1022,7 @@ void EditorState::display_playback_status() {
|
||||
ImGui::SameLine();
|
||||
ImGui::TextUnformatted(fmt::format("{:.3f}", static_cast<double>(current_exact_beats())).c_str());
|
||||
ImGui::SameLine();
|
||||
if (music.has_value()) {
|
||||
ImGui::TextDisabled("Music File Offset :");
|
||||
ImGui::SameLine();
|
||||
ImGui::TextUnformatted(Toolbox::to_string(audio.getPlayingOffset()).c_str());
|
||||
ImGui::SameLine();
|
||||
}
|
||||
ImGui::TextDisabled("Timeline Position :");
|
||||
ImGui::TextDisabled("Time :");
|
||||
ImGui::SameLine();
|
||||
ImGui::TextUnformatted(Toolbox::to_string(current_time()).c_str());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user