X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_walk.c;h=1e15afcd0ed2eb68835904ebd008394d05413d71;hb=refs%2Fheads%2Fmenu2;hp=b421e42c3ab98305b692d6e42b2d01609419e4ff;hpb=72f789aa46c913ec2ffa10907b2124f8d09670e5;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_walk.c b/player_walk.c index b421e42..1e15afc 100644 --- a/player_walk.c +++ b/player_walk.c @@ -1094,16 +1094,18 @@ void player__walk_post_animate(void){ } -void player__walk_im_gui(void){ +void player__walk_im_gui( ui_context *ctx ) +{ struct player_walk *w = &player_walk; - player__debugtext( 1, "V: %5.2f %5.2f %5.2f (%5.2fm/s)", + player__debugtext( ctx, 1, "V: %5.2f %5.2f %5.2f (%5.2fm/s)", localplayer.rb.v[0], localplayer.rb.v[1], localplayer.rb.v[2], v3_length(localplayer.rb.v) ); - player__debugtext( 1, "CO: %5.2f %5.2f %5.2f",localplayer.rb.co[0], + player__debugtext( ctx, + 1, "CO: %5.2f %5.2f %5.2f",localplayer.rb.co[0], localplayer.rb.co[1], localplayer.rb.co[2] ); - player__debugtext( 1, "transition: %5.2f ", w->state.transition_t ); - player__debugtext( 1, "activity: %s\n", + player__debugtext( ctx, 1, "transition: %5.2f ", w->state.transition_t ); + player__debugtext( ctx, 1, "activity: %s\n", (const char *[]){ "air", "ground", "sit", @@ -1114,7 +1116,7 @@ void player__walk_im_gui(void){ "odrop_in", "oregular" } [w->state.activity] ); - player__debugtext( 1, "surface: %s\n", + player__debugtext( ctx, 1, "surface: %s\n", (const char *[]){ "concrete", "wood", "grass",