X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2F16_tail.c;h=6ebe442dac85b44c365608ca8932f11e1284ceb2;hb=a12907289fc04c1d213e5155962a855609b6ab0f;hp=675c86803a5b80a9f7469de2c84997815fac4fc0;hpb=f608476e42e768303a7ce6efdf7f5192b477e8f7;p=16.git diff --git a/src/lib/16_tail.c b/src/lib/16_tail.c index 675c8680..6ebe442d 100755 --- a/src/lib/16_tail.c +++ b/src/lib/16_tail.c @@ -64,7 +64,7 @@ void Startup16(global_game_variables_t *gvar) if (_DEBUG_INIT() == 0) { #ifdef DEBUGSERIAL - printf("WARNING: Failed to initialize DEBUG output\n"); + //printf("WARNING: Failed to initialize DEBUG output\n"); #endif } _DEBUG("Serial debug output started\n"); // NTS: All serial output must end messages with newline, or DOSBox-X will not emit text to log @@ -372,6 +372,22 @@ void Quit (global_game_variables_t *gvar, char *error) //=========================================================================== +void walktypeinfo(player_t *player, word pn) +{ + switch(player[pn].walktype) + { + case 0: //bump + sprintf(global_temp_status_text, "%s", "b"); + break; + case 1: //walk no scroll + sprintf(global_temp_status_text, "%s", "w"); + break; + case 2: //scrolling walk + sprintf(global_temp_status_text, "%s", "s"); + break; + } +} + const char *nibble_to_binary(nibble x) { static char b[9];