summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2016-03-30 09:22:51 +0200
committerPaweł Redman <pawel.redman@gmail.com>2016-03-30 09:22:51 +0200
commitbc50836fdcd20fda174df392c264cc6f03030cdf (patch)
tree253a730e829cffa24d164db8b3d04fd7a428627b /src/main.c
parentb72ce003432393e67b030a8a1be8a7b1c580bcf7 (diff)
ITC WIP #1.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 65a7ab3..a313cc1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -21,6 +21,8 @@ int64_t get_time(void)
return ts.tv_sec * 1000000000 + ts.tv_nsec;
}
+void itc_test(void);
+
int main(void)
{
int rv = 0;
@@ -28,6 +30,9 @@ int main(void)
phy_sim sim;
SDL_Thread *sim_thread;
+ itc_test();
+ return;
+
if (r_init()) {
con_printf("fatal error: renderer initialization failed\n");
rv = 1;