Differences From Artifact [5cd8b5f27b]:
- File exec.c — part of check-in [9d982f0655] at 2020-10-20 23:21:48 on branch trunk — Add game.c file (not implemented much) (user: user, size: 7902) [annotate] [blame] [check-ins using]
To Artifact [47586b49e3]:
- File exec.c — part of check-in [8119f365c2] at 2020-11-16 04:51:13 on branch trunk — Implement properly (hopefully) the mouse button down event in edit.c and game.c (user: user, size: 7936) [annotate] [blame] [check-ins using]
︙ | |||
216 217 218 219 220 221 222 223 224 225 226 227 228 229 | 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | + | nobjects=0; free(objects); objects=0; gameover=0; } const char*execute_turn(int key) { // Set key=0 for initialization if(setjmp(my_env)) return my_error; changed=0; key_ignored=0; lastimage_processing=0; vstackptr=0; if(key_ignored && changed) return "Invalid use of IgnoreKey"; |
︙ |