We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e64f140 commit 33b631bCopy full SHA for 33b631b
zsrc/res.zig
@@ -530,6 +530,8 @@ fn loadTileset(path: [:0]const u8, origin: ?*c.SDL_Texture) !bool {
530
var bfReader = std.io.bufferedReader(file.reader());
531
const reader = bfReader.reader();
532
533
+ // Zig provides precise memory control:
534
+ // This uses a stack allocated ArrayList, see if you can do this in your language.
535
const bufSize = 128;
536
var buffer: [bufSize]u8 = undefined;
537
var fba = std.heap.FixedBufferAllocator.init(&buffer);
0 commit comments