304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
|
case SV_EDITD:
case SV_EDITE: {
int x = getint(&p);
int y = getint(&p);
int xs = getint(&p);
int ys = getint(&p);
int v = getint(&p);
block b = { x, y, xs, ys };
switch (type) {
case SV_EDITH:
editheightxy(v != 0, getint(&p), &b);
break;
case SV_EDITT:
edittexxy(v, getint(&p), &b);
break;
|
|
|
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
|
case SV_EDITD:
case SV_EDITE: {
int x = getint(&p);
int y = getint(&p);
int xs = getint(&p);
int ys = getint(&p);
int v = getint(&p);
struct block b = { x, y, xs, ys };
switch (type) {
case SV_EDITH:
editheightxy(v != 0, getint(&p), &b);
break;
case SV_EDITT:
edittexxy(v, getint(&p), &b);
break;
|