From b17c174906f84de93d84aa60d010ffe603efaa28 Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 7 Feb 2020 23:48:04 +0100 Subject: [PATCH] Fix compile for current master. --- texture_packer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/texture_packer.cpp b/texture_packer.cpp index f2b082b..2fe2894 100644 --- a/texture_packer.cpp +++ b/texture_packer.cpp @@ -374,7 +374,7 @@ void TexturePacker::merge() { int input_format_offset = get_offset_for_format(img->get_format()); - ERR_CONTINUE_MSG(input_format_offset == 0, "Format is not implemented, Skipping!") + ERR_CONTINUE_MSG(input_format_offset == 0, "Format is not implemented, Skipping!"); int h_wo_margin = r->h - 2 * _margin; for (int y = 0; y < h_wo_margin; ++y) {