summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-12 11:29:34 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-12 11:29:34 +0200
commit6bb5acd014a60508e142725fa6f8b9b6a1e4543c (patch)
treed7bb929ddd9b628980b01553a3fdd5294b4f43f1
parent6de86f543d701f340d3f7cf2a37d72e60dd292f5 (diff)
App: emit_flushdraw() should actually emit a flushdraw event.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r--src/app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 36096a9..f8d216b 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -584,7 +584,7 @@ void App::emit_syncdraw(char const *label) {
}
void App::emit_flushdraw(char const *label) {
- this->api.send_event("syncdraw", label);
+ this->api.send_event("flushdraw", label);
}
void App::emit_visible(char const *label, bool is_visible) {