Overview
Comment: | Fix a mistake in the beginning phase in exec.c |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
99bee720be59dee421f87c171bb0a515 |
User & Date: | user on 2020-12-19 22:21:58 |
Other Links: | manifest | tags |
Context
2020-12-19
| ||
22:24 | Implement command to create a new empty puzzle set check-in: 6d402e1175 user: user tags: trunk | |
22:21 | Fix a mistake in the beginning phase in exec.c check-in: 99bee720be user: user tags: trunk | |
07:12 | Correct a few things in the file handling; make it read/write by default, but add a read-only option check-in: ea3c873bb0 user: user tags: trunk | |
Changes
Modified exec.c from [170a3bb7c5] to [f29534adc5].
︙ | ︙ | |||
1575 1576 1577 1578 1579 1580 1581 | current_key=0; if(key_ignored) { quiz_obj=NVALUE(0); return changed?"Invalid use of IgnoreKey":0; } move_number++; // Beginning phase | | | 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 | current_key=0; if(key_ignored) { quiz_obj=NVALUE(0); return changed?"Invalid use of IgnoreKey":0; } move_number++; // Beginning phase if(!all_flushed) broadcast(m,0,MSG_BEGIN_TURN,m!=VOIDLINK?NVALUE(objects[m]->x):NVALUE(0),m!=VOIDLINK?NVALUE(objects[m]->y):NVALUE(0),v,0); turn=0; // Trigger phase trig: busy=0; clock=255; for(i=0;i<64*pfheight;i++) { n=playfield[i]; |
︙ | ︙ |