about summary refs log tree commit diff stats
path: root/075scenario_console.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-23 00:18:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-23 00:18:40 -0700
commit9f484946cc340264b9a038d3b30369ee0d71338b (patch)
treeb80c86b0e9e1c2e8b113f8597b524ce25569a7e9 /075scenario_console.cc
parentc0f217d4b11da81367fb50516e65c29a3caded96 (diff)
downloadmu-9f484946cc340264b9a038d3b30369ee0d71338b.tar.gz
1625
Diffstat (limited to '075scenario_console.cc')
-rw-r--r--075scenario_console.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/075scenario_console.cc b/075scenario_console.cc
index 046dd69f..2dc730af 100644
--- a/075scenario_console.cc
+++ b/075scenario_console.cc
@@ -61,7 +61,7 @@ case ASSUME_CONSOLE: {
   for (long long int i = 0; i < SIZE(r.steps); ++i) {
     const instruction& curr = r.steps.at(i);
     if (curr.name == "left-click") {
-      Memory[Current_routine->alloc] = /*tag for 'single-touch-event' variant of 'event' exclusive-container*/2;
+      Memory[Current_routine->alloc] = /*tag for 'touch-event' variant of 'event' exclusive-container*/2;
       Memory[Current_routine->alloc+1+/*offset of 'type' in 'mouse-event'*/0] = TB_KEY_MOUSE_LEFT;
       Memory[Current_routine->alloc+1+/*offset of 'row' in 'mouse-event'*/1] = to_integer(curr.ingredients.at(0).name);
       Memory[Current_routine->alloc+1+/*offset of 'column' in 'mouse-event'*/2] = to_integer(curr.ingredients.at(1).name);