mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-15 20:08:17 +00:00
[client] overlay/graphs: allow the graph to have a custom title format
This commit is contained in:
@@ -695,9 +695,10 @@ void app_releaseAllKeybinds(void)
|
||||
}
|
||||
}
|
||||
|
||||
GraphHandle app_registerGraph(const char * name, RingBuffer buffer, float min, float max)
|
||||
GraphHandle app_registerGraph(const char * name, RingBuffer buffer,
|
||||
float min, float max, GraphFormatFn formatFn)
|
||||
{
|
||||
return overlayGraph_register(name, buffer, min, max);
|
||||
return overlayGraph_register(name, buffer, min, max, formatFn);
|
||||
}
|
||||
|
||||
void app_unregisterGraph(GraphHandle handle)
|
||||
|
Reference in New Issue
Block a user