From 4c57f0b5f4a667005acf6008691d43cc21bf2790 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 4 Sep 2023 22:24:14 -0500 Subject: [PATCH] chore(emu): fix spelling mistakes --- src/core/cartridge.zig | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/core/cartridge.zig b/src/core/cartridge.zig index a1c481d..5c11625 100644 --- a/src/core/cartridge.zig +++ b/src/core/cartridge.zig @@ -1,6 +1,6 @@ const std = @import("std"); -/// For use with withe tiniest ROM +/// For use with with the tiniest ROM pub const Header = extern struct { title: [12]u8, game_code: [4]u8, @@ -79,8 +79,7 @@ pub const Header = extern struct { // note, we're missing some debug_ prefixed fields here // but we want the header struct to be 0x160 bytes so that - // the smallest NDS rom's header can be read without any speicifc - // workarounds + // the smallest NDS rom's header can be read without any specific workarounds // TODO: Determine if we ever will need those debug fields, and if so: Implement them comptime {