| 45 | { |
| 46 | inline void reset_graph_max_value(StatGraphData &graph_data) |
| 47 | { |
| 48 | // If it does not have a fixed max |
| 49 | if (!graph_data.has_fixed_max) |
| 50 | { |
| 51 | // Reset it |
| 52 | graph_data.max_value = 0.0f; |
| 53 | } |
| 54 | } |
| 55 | } // namespace |
| 56 | |
| 57 | /** |
| 58 | * @brief Helper structure for fonts loaded from TTF |
no outgoing calls
no test coverage detected