summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index f0f6f50..786194a 100644
--- a/main.cpp
+++ b/main.cpp
@@ -42,10 +42,16 @@ int main()
pos.x = ie.x;
pos.y = ie.y;
}
+ else if (ie.type == _EVENT_TERM)
+ {
+ return 0;
+ }
a.clear();
a.drawPoint('X', pos, true, _COL_GREEN);
a.render();
+
+ usleep(10*1000);
}
}