From 9d0cdfb488093315f9c05af05b06fb4f27902746 Mon Sep 17 00:00:00 2001 From: Matt Mascarenhas Date: Thu, 20 Sep 2018 00:43:47 +0100 Subject: [PATCH] cinera.c: Add "Packing template" back --- cinera/cinera.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cinera/cinera.c b/cinera/cinera.c index 0f16e85..833dcff 100644 --- a/cinera/cinera.c +++ b/cinera/cinera.c @@ -17,7 +17,7 @@ typedef struct version CINERA_APP_VERSION = { .Major = 0, .Minor = 6, - .Patch = 1 + .Patch = 2 }; #include // 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); }