From 4251089687dd96dcf5d2c7e73e25d748ab6d263b Mon Sep 17 00:00:00 2001 From: n1073645 Date: Tue, 17 Mar 2020 08:24:35 +0000 Subject: [PATCH] Targa Image Extractor --- src/core/lib/FileSignatures.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/lib/FileSignatures.mjs b/src/core/lib/FileSignatures.mjs index 833a1767..326d08b1 100644 --- a/src/core/lib/FileSignatures.mjs +++ b/src/core/lib/FileSignatures.mjs @@ -3096,7 +3096,8 @@ export function extractTARGA(bytes, offset) { /** * Move's backwards in the stream until it meet bytes that are the same as the amount of bytes moved. * - * @param maxSize + * @param {number} sizeOfSize + * @param {number} maxSize */ function moveBackwardsUntilSize(maxSize, sizeOfSize) { for (let i = 0; i < maxSize; i++) {