Changeset 7258c6a in buchla-68k for ram/etscor.c
- Timestamp:
- 07/09/2017 04:45:34 PM (7 years ago)
- Branches:
- master
- Children:
- 8618599
- Parents:
- 0292fbb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/etscor.c
r0292fbb r7258c6a 17 17 #include "scdsp.h" 18 18 19 extern u nsigned*obj8;19 extern uint16_t *obj8; 20 20 21 extern short curscor;22 extern short insmode;23 extern short stccol;21 extern int16_t curscor; 22 extern int16_t insmode; 23 extern int16_t stccol; 24 24 25 extern chardspbuf[];25 extern int8_t dspbuf[]; 26 26 27 27 /* … … 31 31 */ 32 32 33 short et_scor(short n)33 int16_t et_scor(int16_t n) 34 34 { 35 35 sprintf(ebuf, "%02.2d", curscor + 1); … … 49 49 */ 50 50 51 short ef_scor(short n)51 int16_t ef_scor(int16_t n) 52 52 { 53 register short ival;53 register int16_t ival; 54 54 55 55 ebuf[2] = '\0'; … … 78 78 */ 79 79 80 short rd_scor(short n)80 int16_t rd_scor(int16_t n) 81 81 { 82 82 sprintf(dspbuf, "%02.2d", curscor + 1); … … 100 100 */ 101 101 102 short nd_scor(short n, short k)102 int16_t nd_scor(int16_t n, int16_t k) 103 103 { 104 register short ec;104 register int16_t ec; 105 105 106 106 ec = stccol - cfetp->flcol;
Note:
See TracChangeset
for help on using the changeset viewer.