From b4feb6ce9200f8afa2559c200353e59e27ee7edb Mon Sep 17 00:00:00 2001 From: MatthewBeshay <92357869+MatthewBeshay@users.noreply.github.com> Date: Wed, 1 Apr 2026 16:28:57 +1100 Subject: [PATCH] chore: mark comment 4jcraft --- minecraft/Minecraft.Client/Source Files/BufferedImage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minecraft/Minecraft.Client/Source Files/BufferedImage.cpp b/minecraft/Minecraft.Client/Source Files/BufferedImage.cpp index 2bc104a4a..2ea7b60c0 100644 --- a/minecraft/Minecraft.Client/Source Files/BufferedImage.cpp +++ b/minecraft/Minecraft.Client/Source Files/BufferedImage.cpp @@ -224,8 +224,8 @@ BufferedImage* BufferedImage::getSubimage(int x, int y, int w, int h) { BufferedImage* img = new BufferedImage(w, h, 0); - // Copy pixel data directly into img->data[0]. - // The old arrayWithLength was a non-owning wrapper — std::vector copies, + // 4jcraft: Copy pixel data directly into img->data[0]. + // The old arrayWithLength.h (custom vector impl) was a non-owning wrapper, std::vector copies // so we write to the raw array directly instead. int srcW = width; for (int row = 0; row < h; row++) {