Skip to content

Commit

Permalink
Removed debug requesters
Browse files Browse the repository at this point in the history
  • Loading branch information
betajaen committed Nov 22, 2020
1 parent 08087db commit dff98bb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
8 changes: 2 additions & 6 deletions Code/Tools/ConvertManiac/Lfl.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,9 @@ STATIC ULONG ReadLflNameStringToDialogue(ULONG offset)
if (len == 0)
return 0;

/* RequesterF("OK", "Offset = %ld, Len = %ld, Char 0 = %ld Str = %s", (ULONG) offset, (ULONG)len, text[0], &text[0]); */

return PushDialogue(LANG_ENGLISH, len, &text[0]);
}

VOID StartLfl()
{
LflData = NULL;
Expand Down Expand Up @@ -213,8 +212,6 @@ STATIC VOID ReadLflObject(struct NEW_ANY_ENTITY* entity, ULONG dataOffset, ULONG

if (nameOff > 0xE && nameOff < size)
{
// RequesterF("OK", "NameOff = %ld", (ULONG)nameOff);

nameOff += dataOffset;
entity->en_Name = ReadLflNameStringToDialogue(nameOff);
}
Expand All @@ -223,7 +220,6 @@ STATIC VOID ReadLflObject(struct NEW_ANY_ENTITY* entity, ULONG dataOffset, ULONG
entity->en_Name = 0;
}


}

STATIC VOID ExportEntity(UWORD id, ULONG dataOffset, ULONG graphicsOffset)
Expand All @@ -235,7 +231,7 @@ STATIC VOID ExportEntity(UWORD id, ULONG dataOffset, ULONG graphicsOffset)

entity.en_Type = ET_ANY;
entity.en_Size = sizeof(struct NEW_ANY_ENTITY);

SaveAssetQuick(Archive, &entity, entity.en_Size, CT_ENTITY, id, CHUNK_FLAG_ARCH_ANY);
AddToTable(CT_ENTITY, id, ArchiveId, MM_CHAPTER);
}
Expand Down
2 changes: 0 additions & 2 deletions Code/Tools/Squawk/Source/Dialogue.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ STATIC struct WRITE_STRING_TABLE* NewTable(UWORD language)

StringTables[id] = tbl;

RequesterF("OK", "New Table = %ld", (ULONG)id);

return tbl;
}

Expand Down
Binary file modified Releases/Parrot/Tools/ConvertManiac
Binary file not shown.

0 comments on commit dff98bb

Please sign in to comment.