Differences From Artifact [13e928d083]:
- File edit.c — part of check-in [8117ec3cff] at 2022-01-04 02:21:52 on branch trunk — Implement level index editor, including divisions. (Currently, the divisions is not used outside of the level index editor; later, this should be fixed) (user: user, size: 61713) [annotate] [blame] [check-ins using]
To Artifact [cc13f87281]:
- File edit.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: 61781) [annotate] [blame] [check-ins using]
︙ | |||
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 | 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 | + + + | return -1; case '^S': // Save level save_level(); return 1; case '^T': // Level title edit_string(&level_title); return 0; case '^Y': // Sound test sound_test(); return prev; case '^Z': // Cancel rectangle editrect.x0=editrect.y0=editrect.x1=editrect.y1=0; return prev; case '^<': // First corner if((number&63?:64)>pfwidth || (number/64?:64)>pfheight) return prev; editrect.x0=number&63?:64; editrect.y0=number/64?:64; |
︙ |