cinera.c: Add "Packing template" back

This commit is contained in:
Matt Mascarenhas 2018-09-20 00:43:47 +01:00
parent 2eddd7a7c2
commit 9d0cdfb488
1 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ typedef struct
version CINERA_APP_VERSION = {
.Major = 0,
.Minor = 6,
.Patch = 1
.Patch = 2
};
#include <stdarg.h> // NOTE(matt): varargs
@ -1583,6 +1583,7 @@ InitTemplate(template *Template, char *Location, enum8(template_types) Type)
{
CopyStringNoFormat(Template->File.Path, sizeof(Template->File.Path), Location);
ConstructTemplatePath(Template, Type);
printf("%sPacking%s template: %s\n", ColourStrings[CS_ONGOING], ColourStrings[CS_END], Template->File.Path);
ReadFileIntoBuffer(&Template->File, 0);
ClearTemplateMetadata(Template);
}