1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-05-11 13:38:42 +03:00

Fix for Jira bug I7-2166

This commit is contained in:
Graham Nelson 2022-08-10 22:30:12 +01:00
parent a409e852ae
commit c1731ec3f1
12 changed files with 20 additions and 9 deletions

View file

@ -1 +1 @@
bda24829b793355bf7773325ad0e92e0
20c31cde6657775d7311d4dac5b2c404

View file

@ -1,5 +1,6 @@
Constant Story "FwConstReleaseTest";
Constant Headline "Not a game.^";
Serial "220528";
Release FORWARD_CONSTANT;

View file

@ -228,9 +228,11 @@ opcode, and so Glulx followed suit.
if (actor ~= player) rfalse;
Banner();
print "Inform 7 v", (PrintI6Text) I7_FULL_VERSION_NUMBER, "^";
print "Identification number: ";
for (ix=6: ix <= UUID_ARRAY->0: ix++) print (char) UUID_ARRAY->ix;
print "^";
if (UUID_ARRAY->0 >= 6) {
print "Identification number: ";
for (ix=6: ix <= UUID_ARRAY->0: ix++) print (char) UUID_ARRAY->ix;
print "^";
}
@gestalt 1 0 ix;
print "Interpreter version ", ix / $10000, ".", (ix & $FF00) / $100,
".", ix & $FF, " / ";

View file

@ -133,9 +133,11 @@ opcode, and so Glulx followed suit.
if (actor ~= player) rfalse;
Banner();
print "Inform 7 v", (PrintI6Text) I7_FULL_VERSION_NUMBER, "^";
print "Identification number: ";
for (ix=6: ix <= UUID_ARRAY->0: ix++) print (char) UUID_ARRAY->ix;
print "^";
if (UUID_ARRAY->0 >= 6) {
print "Identification number: ";
for (ix=6: ix <= UUID_ARRAY->0: ix++) print (char) UUID_ARRAY->ix;
print "^";
}
ix = 0; ! shut up compiler warning
if (standard_interpreter > 0) {
print "Standard interpreter ",

View file

@ -104,7 +104,7 @@ should be able to fake the date-stamp with dates of their own choosing.
int year_digits = (the_present->tm_year) % 100;
WRITE_TO(SN, "%02d%02d%02d",
year_digits, (the_present->tm_mon)+1, the_present->tm_mday);
Emit::text_constant(Hierarchy::find(SERIAL_MD_HL), BibliographicData::read_uuid());
Emit::text_constant(Hierarchy::find(SERIAL_MD_HL), SN);
Emit::serial_number(iname, SN);
DISCARD_TEXT(SN)
Hierarchy::make_available(iname);

View file

@ -1,4 +1,5 @@
!% $ZCODE_LESS_DICT_DATA=1;
!% $OMIT_UNUSED_ROUTINES=1;
Constant Grammar__Version 2;
Global debug_flag;
Global or_tmp_var;

View file

@ -1,4 +1,5 @@
!% $ZCODE_LESS_DICT_DATA=1;
!% $OMIT_UNUSED_ROUTINES=1;
Constant Grammar__Version 2;
Global debug_flag;
Global or_tmp_var;

View file

@ -1,4 +1,5 @@
!% $ZCODE_LESS_DICT_DATA=1;
!% $OMIT_UNUSED_ROUTINES=1;
Constant Grammar__Version 2;
Global debug_flag;
Global or_tmp_var;

View file

@ -1,4 +1,5 @@
!% $ZCODE_LESS_DICT_DATA=1;
!% $OMIT_UNUSED_ROUTINES=1;
Constant Grammar__Version 2;
Global debug_flag;
Global or_tmp_var;

View file

@ -1,4 +1,5 @@
!% $ZCODE_LESS_DICT_DATA=1;
!% $OMIT_UNUSED_ROUTINES=1;
Constant Grammar__Version 2;
Global debug_flag;
Global or_tmp_var;

View file

@ -1,4 +1,5 @@
!% $ZCODE_LESS_DICT_DATA=1;
!% $OMIT_UNUSED_ROUTINES=1;
Constant Grammar__Version 2;
Global debug_flag;
Global or_tmp_var;

View file

@ -176,7 +176,7 @@ most important 150 or so, which were indeed reported, and for which issue number
at our tracker and commits can be identified.
- Fix for Jira bug [I7-2171](https://inform7.atlassian.net/browse/I7-2171)
"After saving check that the savefile isn't empty"
"File writing fails aren't detected, so should check that the files aren't 0 length"
([commit bf7805d](https://github.com/ganelson/inform/commit/3dc60f500fb29a9b7d53122b2b566f32399be4f7))
- Fix for Jira bug [I7-2156](https://inform7.atlassian.net/browse/I7-2156)