Skip to content

Fix a missing double quote in an expression #205

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/gdevelop5/tutorials/how-to-debug-poor-performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If your game is running slowly, it's a good idea to look at these common consume

## FPS counter

Try adding an FPS (frames per second) counter to your game. This will allow you to measure if your optimizations are increasing the performance of your game. You can do this by modifying a text object, and setting it to **FPS: " + ToString(ceil(1/TimeDelta()))** or:
Try adding an FPS (frames per second) counter to your game. This will allow you to measure if your optimizations are increasing the performance of your game. You can do this by modifying a text object, and setting it to **"FPS: " + ToString(ceil(1/TimeDelta()))** or:

![](/gdevelop5/tutorials/fps-counter.jpg)

Expand Down