summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
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;