Differences From Artifact [e517a0c994]:
- File game.c — part of check-in [5c59b19d96] at 2022-01-07 05:46:52 on branch trunk — Implement divisions of levels in the list of levels menu in the game (only for puzzle sets that have any divisions). (user: user, size: 48429) [annotate] [blame] [check-ins using]
To Artifact [73bec037e1]:
- File game.c — part of check-in [d15195a921] at 2022-01-29 05:55:37 on branch trunk — Implement the Sound instruction. (There are still a few problems such as clicks at the end of some sound effects, and a few problems with the sound test menu. However, it mostly works, now.) (user: user, size: 48497) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 |
case '^Q': // Quit
return -1;
case '^S': // Save solution
if(gameover==1) record_solution();
return 1;
case '^T': // Show title
modal_draw_popup(level_title);
return prev;
case '^d': // Describe object
describe_at(number-65);
return prev;
case '^g': // Display global variables
global_examine();
return prev;
| > > > | 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 |
case '^Q': // Quit
return -1;
case '^S': // Save solution
if(gameover==1) record_solution();
return 1;
case '^T': // Show title
modal_draw_popup(level_title);
return prev;
case '^Y': // Sound test
sound_test();
return prev;
case '^d': // Describe object
describe_at(number-65);
return prev;
case '^g': // Display global variables
global_examine();
return prev;
|
| ︙ | ︙ |