mirror of
https://github.com/chocolate-doom/research.git
synced 2024-11-10 07:11:34 +00:00
Add -1 terminator to unsupported strings lists.
Subversion-branch: /research Subversion-revision: 1899
This commit is contained in:
parent
2bc16c587c
commit
7097480646
2 changed files with 4 additions and 3 deletions
|
@ -72,7 +72,7 @@ def print_unsupported_strings(name, strings)
|
||||||
|
|
||||||
numbers = 0
|
numbers = 0
|
||||||
|
|
||||||
for offset in unsupported_offsets.sort
|
for offset in unsupported_offsets.sort + [ -1 ]
|
||||||
if numbers == 0
|
if numbers == 0
|
||||||
print " "
|
print " "
|
||||||
else
|
else
|
||||||
|
|
|
@ -524,6 +524,7 @@ static int unsupported_strings_1_0[] = {
|
||||||
14432, 14440, 14444, 14472, 14496, 14516, 14536, 14548,
|
14432, 14440, 14444, 14472, 14496, 14516, 14536, 14548,
|
||||||
14560, 14572, 14580, 14588, 14596, 14604, 14612, 14620,
|
14560, 14572, 14580, 14588, 14596, 14604, 14612, 14620,
|
||||||
14636, 14660, 14704, 14740, 14748, 14756, 14760, 14768,
|
14636, 14660, 14704, 14740, 14748, 14756, 14760, 14768,
|
||||||
|
-1,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int unsupported_strings_1_2[] = {
|
static int unsupported_strings_1_2[] = {
|
||||||
|
@ -565,7 +566,7 @@ static int unsupported_strings_1_2[] = {
|
||||||
15628, 15632, 15644, 15652, 15656, 15680, 15688, 15692,
|
15628, 15632, 15644, 15652, 15656, 15680, 15688, 15692,
|
||||||
15704, 15712, 15724, 15764, 15772, 15776, 15804, 15828,
|
15704, 15712, 15724, 15764, 15772, 15776, 15804, 15828,
|
||||||
15848, 15868, 15880, 15892, 15904, 15912, 15920, 15928,
|
15848, 15868, 15880, 15892, 15904, 15912, 15920, 15928,
|
||||||
15936,
|
15936, -1,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int unsupported_strings_1_3[] = {
|
static int unsupported_strings_1_3[] = {
|
||||||
|
@ -607,6 +608,6 @@ static int unsupported_strings_1_3[] = {
|
||||||
15628, 15632, 15644, 15652, 15656, 15680, 15688, 15692,
|
15628, 15632, 15644, 15652, 15656, 15680, 15688, 15692,
|
||||||
15704, 15712, 15724, 15764, 15772, 15776, 15804, 15828,
|
15704, 15712, 15724, 15764, 15772, 15776, 15804, 15828,
|
||||||
15848, 15868, 15880, 15892, 15904, 15912, 15920, 15928,
|
15848, 15868, 15880, 15892, 15904, 15912, 15920, 15928,
|
||||||
15936,
|
15936, -1,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue