Differences From Artifact [de2922fa30]:
- File edit.c — part of check-in [b43a526002] at 2021-04-18 22:44:04 on branch trunk — Implement pasting into text input prompts (user: user, size: 45696) [annotate] [blame] [check-ins using]
To Artifact [58dde81db5]:
- File edit.c — part of check-in [2885d776fc] at 2021-04-20 02:32:02 on branch trunk — Add the possibility to specify the level version number when importing (optional) (user: user, size: 45844) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
970 971 972 973 974 975 976 977 978 979 980 981 982 983 |
goto done;
}
d=1;
annihilate();
pfwidth=x;
pfheight=y;
break;
case '@':
free(level_title);
level_title=import_string(p+1);
break;
case '%':
if(nlevelstrings>0x2000) {
screen_message("Too many level strings");
| > > > > > > | 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 |
goto done;
}
d=1;
annihilate();
pfwidth=x;
pfheight=y;
break;
case 'V':
p=import_numbers(p+1,&x,0);
if(!p || *p) goto bad;
level_version=x;
level_changed=0;
break;
case '@':
free(level_title);
level_title=import_string(p+1);
break;
case '%':
if(nlevelstrings>0x2000) {
screen_message("Too many level strings");
|
| ︙ | ︙ |