chore: move log statement

This commit is contained in:
Rekai Nyangadzayi Musuka 2022-04-13 21:45:15 -03:00
parent dfe94fb931
commit c1b74d556a
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,6 @@ pub fn init(alloc: Allocator, rom_path: []const u8, save_path: ?[]const u8) !Sel
.backup = try Backup.init(alloc, kind, title, save_path),
};
pak.parseHeader();
log.info("Backup: {}", .{kind});
return pak;
}

View File

@ -27,6 +27,8 @@ pub const Backup = struct {
flash: Flash,
pub fn init(alloc: Allocator, kind: BackupKind, title: [12]u8, path: ?[]const u8) !Self {
log.info("Kind: {}", .{kind});
const buf_size: usize = switch (kind) {
.Sram => 0x8000, // 32K
.Flash => 0x10000, // 64K