From 0e0b9add133d56fc0208290d5b9627dc3362f1d2 Mon Sep 17 00:00:00 2001 From: Luna Date: Wed, 10 Jul 2019 12:00:43 -0300 Subject: [PATCH] update todo --- src/runner.zig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/runner.zig b/src/runner.zig index 076bdbd..30fc12a 100644 --- a/src/runner.zig +++ b/src/runner.zig @@ -73,8 +73,9 @@ pub const Runner = struct { return RunError.NoBMP; } - // TODO, copy load_path into a temporary file, then use that - // file to work on things. + // we don't copy load_path into a temporary file because we're already + // loading it under the SFM_READ mode, which won't cause any destructive + // operations on the file. self.image = try Image.open(self.allocator, load_path); }