| 247 | } |
| 248 | |
| 249 | void DebugGraph_Update(int id, int value) { |
| 250 | if (id < 0 || id >= graph_num_nodes) |
| 251 | return; |
| 252 | |
| 253 | tGraphNode *node = DebugGraph_FindNode(id); |
| 254 | if (!node) |
| 255 | return; |
| 256 | |
| 257 | node->Update(value); |
| 258 | } |
| 259 | |
| 260 | void DebugGraph_Update(int id, float value) { |
| 261 | if (id < 0 || id >= graph_num_nodes) |
no test coverage detected