Changeset 64 for ttyvaders/trunk/src/overlay.c
- Timestamp:
- Dec 23, 2002, 5:21:38 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ttyvaders/trunk/src/overlay.c
r62 r64 4 4 * All Rights Reserved 5 5 * 6 * $Id: overlay.c,v 1. 1 2002/12/23 15:06:13sam Exp $6 * $Id: overlay.c,v 1.2 2002/12/23 16:21:38 sam Exp $ 7 7 * 8 8 * This program is free software; you can redistribute it and/or modify … … 32 32 /* Draw life jauge */ 33 33 gfx_color( GRAY ); 34 gfx_goto( 2, 1 );34 gfx_goto( 4, 1 ); 35 35 gfx_putstr( dots30 ); 36 36 … … 48 48 } 49 49 50 gfx_goto( 2, 1 );50 gfx_goto( 4, 1 ); 51 51 gfx_putstr( dashes30 + ( MAX_LIFE - g->p->life ) * 30 / MAX_LIFE ); 52 52 53 53 gfx_color( WHITE ); 54 54 gfx_goto( 1, 1 ); 55 gfx_putstr( "L |" ); 56 gfx_goto( 34, 1 ); 55 57 gfx_putstr( "|" ); 56 gfx_goto( 32, 1 );57 gfx_putstr( "| L" );58 58 59 59 /* Draw weapon jauge */ 60 60 gfx_color( GRAY ); 61 gfx_goto( 38, 1 );61 gfx_goto( 42, 1 ); 62 62 gfx_putstr( dots30 + 10 ); 63 63 … … 75 75 } 76 76 77 gfx_goto( 38, 1 );77 gfx_goto( 42, 1 ); 78 78 gfx_putstr( dashes30 + 10 + ( MAX_SPECIAL - g->p->special ) * 20 / MAX_SPECIAL ); 79 79 80 80 gfx_color( WHITE ); 81 gfx_goto( 37, 1 ); 81 gfx_goto( 39, 1 ); 82 gfx_putstr( "S |" ); 83 gfx_goto( 62, 1 ); 82 84 gfx_putstr( "|" ); 83 gfx_goto( 58, 1 );84 gfx_putstr( "| S" );85 85 } 86 86
Note: See TracChangeset
for help on using the changeset viewer.