Skip to content

Commit 33b631b

Browse files
committed
Add comment about stack allocated ArrayList
1 parent e64f140 commit 33b631b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

zsrc/res.zig

+2
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,8 @@ fn loadTileset(path: [:0]const u8, origin: ?*c.SDL_Texture) !bool {
530530
var bfReader = std.io.bufferedReader(file.reader());
531531
const reader = bfReader.reader();
532532

533+
// Zig provides precise memory control:
534+
// This uses a stack allocated ArrayList, see if you can do this in your language.
533535
const bufSize = 128;
534536
var buffer: [bufSize]u8 = undefined;
535537
var fba = std.heap.FixedBufferAllocator.init(&buffer);

0 commit comments

Comments
 (0)