Changeset 759
- Timestamp:
- 03/12/08 16:07:51 (6 months ago)
- Files:
-
- trunk/src/cmd0.c (modified) (2 diffs)
- trunk/src/cmd4.c (modified) (1 diff)
- trunk/src/game-event.c (modified) (1 diff)
- trunk/src/load.c (modified) (1 diff)
- trunk/src/z-file.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd0.c
r698 r759 462 462 { 463 463 menu_type menu; 464 menu_iter commands_menu = { 0, 0, 0, cmd_sub_entry, cmd_sub_action };464 menu_iter commands_menu = { MN_NULL, 0, 0, cmd_sub_entry, cmd_sub_action }; 465 465 region area = { 23, 4, 37, 13 }; 466 466 … … 527 527 { 528 528 menu_type menu; 529 menu_iter commands_menu = { 0, 0, 0, cmd_list_entry, cmd_list_action };529 menu_iter commands_menu = { MN_NULL, 0, 0, cmd_list_entry, cmd_list_action }; 530 530 region area = { 21, 5, 37, 6 }; 531 531 trunk/src/cmd4.c
r717 r759 2313 2313 static const menu_iter options_toggle_iter = 2314 2314 { 2315 0,2315 MN_NULL, 2316 2316 NULL, 2317 2317 NULL, trunk/src/game-event.c
r623 r759 23 23 #include "game-event.h" 24 24 25 struct event_handler_entry;25 typedef struct event_handler_entry; 26 26 struct event_handler_entry 27 27 { trunk/src/load.c
r689 r759 344 344 byte old_dd; 345 345 byte old_ds; 346 byte tmp8u;347 346 348 347 u32b f1, f2, f3; trunk/src/z-file.c
r693 r759 547 547 bool file_writec(ang_file *f, byte b) 548 548 { 549 return file_write(f, &b, 1);549 return file_write(f, (const char *)&b, 1); 550 550 } 551 551
