mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Update DUMB to revision efd9431447a6f686e8212ffc796624ed58b06531
- Added format tag to IT reader SVN r4109 (trunk)
This commit is contained in:
parent
f90607e8ab
commit
566766f041
1 changed files with 4 additions and 2 deletions
|
@ -1350,9 +1350,11 @@ DUH *DUMBEXPORT dumb_read_it_quick(DUMBFILE *f)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
{
|
{
|
||||||
const char *tag[1][2];
|
const char *tag[2][2];
|
||||||
tag[0][0] = "TITLE";
|
tag[0][0] = "TITLE";
|
||||||
tag[0][1] = ((DUMB_IT_SIGDATA *)sigdata)->name;
|
tag[0][1] = ((DUMB_IT_SIGDATA *)sigdata)->name;
|
||||||
return make_duh(-1, 1, (const char *const (*)[2])tag, 1, &descptr, &sigdata);
|
tag[1][0] = "FORMAT";
|
||||||
|
tag[1][1] = "IT";
|
||||||
|
return make_duh(-1, 2, (const char *const (*)[2])tag, 1, &descptr, &sigdata);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue