Skip to content

Commit

Permalink
feat: Add FPS label to the performance overlay plugin (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 authored Oct 6, 2024
1 parent 7abbfc0 commit 56e11cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/freya/src/plugins/performance_overlay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl FreyaPlugin for PerformanceOverlayPlugin {
// FPS
add_text(
&mut paragraph_builder,
format!("{} \n", self.frames.len()),
format!("{} FPS\n", self.frames.len()),
30.0,
);

Expand Down

0 comments on commit 56e11cf

Please sign in to comment.