imgui stuff
[carveJwlIkooP6JGAAIwe30JlM.git] / player.c
index 5b64b8d7f99084f5b2c364e6640d681fbf0738dd..0339a8d889f87c0faa08bf6b2443cf2bba9e783b 100644 (file)
--- a/player.c
+++ b/player.c
@@ -38,6 +38,7 @@ VG_STATIC void player_init(void)
 PLAYER_API
 void player__debugtext( int size, const char *fmt, ... )
 {
+#if 0
        char buffer[ 1024 ];
 
    va_list args;
@@ -47,6 +48,7 @@ void player__debugtext( int size, const char *fmt, ... )
 
    ui_text( vg_uictx.cursor, buffer, size, k_text_align_right );
        vg_uictx.cursor[1] += 14*size;
+#endif
 }
 
 /*
@@ -293,6 +295,7 @@ VG_STATIC void gate_rotate_angles( ent_gate *gate, v3f angles, v3f d )
 
 PLAYER_API void player__im_gui( player_instance *player )
 {
+#if 0
    vg_uictx.cursor[0] = vg.window_x - 200;
    vg_uictx.cursor[1] = 0;
    vg_uictx.cursor[2] = 200;
@@ -310,6 +313,7 @@ PLAYER_API void player__im_gui( player_instance *player )
 
    b[2].co[1] = vg_uictx.cursor[1];
    b[3].co[1] = vg_uictx.cursor[1];
+#endif
 }
 
 VG_STATIC void global_skateshop_exit(void);