Only show engine time

This commit is contained in:
Stepland 2023-07-20 16:00:49 +02:00
parent 39902263d9
commit 44079dd68c
2 changed files with 4 additions and 7 deletions

View File

@ -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

View File

@ -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());
}