From 1bcbf648084de5cd6d0168f6570a42327fe2aa41 Mon Sep 17 00:00:00 2001 From: Pascal Thomet Date: Fri, 3 Feb 2023 20:42:40 +0100 Subject: [PATCH] Updated Implementing Power Save, aka Idling outside of ImGui (markdown) --- Implementing-Power-Save,-aka-Idling-outside-of-ImGui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Implementing-Power-Save,-aka-Idling-outside-of-ImGui.md b/Implementing-Power-Save,-aka-Idling-outside-of-ImGui.md index 6fd2f3b..94c2e73 100644 --- a/Implementing-Power-Save,-aka-Idling-outside-of-ImGui.md +++ b/Implementing-Power-Save,-aka-Idling-outside-of-ImGui.md @@ -12,7 +12,7 @@ This approach is summarized below. Of course, you may adapt it to your liking. ### 1. Create a storage for the idling data -First, inside the application state rendering function, let's add a storage for the Idling parameters. +First, inside the application state, let's add a storage for the Idling parameters. For example: ```cpp