[client] audio: redraw the graphs if they have been updated

This commit is contained in:
Geoffrey McRae
2022-01-17 22:49:19 +11:00
parent 775ac7ce8b
commit 0ad26b7da7
5 changed files with 17 additions and 0 deletions

View File

@@ -706,6 +706,11 @@ void app_unregisterGraph(GraphHandle handle)
overlayGraph_unregister(handle);
}
void app_invalidateGraphs(void)
{
overlayGraph_invalidate();
}
void app_registerOverlay(const struct LG_OverlayOps * ops, const void * params)
{
ASSERT_LG_OVERLAY_VALID(ops);