diff --git a/src/main.zig b/src/main.zig index 77f0a9d..f641c99 100644 --- a/src/main.zig +++ b/src/main.zig @@ -32,6 +32,7 @@ pub fn main() !void { defer c.SDL_DestroyRenderer(renderer); const source_code = @embedFile("GapProbeScan.cs"); + const file_name = "GapProbeScan.cs"; const color_result: c_int = c.SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255); if (color_result != 0) { @@ -62,7 +63,7 @@ pub fn main() !void { return error.TTFFontLoadFailed; } - const surface: [*c]c.SDL_Surface = c.TTF_RenderText_Solid(font, "Hello, World!", text_color); + const surface: [*c]c.SDL_Surface = c.TTF_RenderText_Solid(font, file_name, text_color); if (surface == null) { c.SDL_Log("Unable to render text"); return error.RenderTextFailed; @@ -118,7 +119,7 @@ pub fn main() !void { var i: usize = 0; var column: c_int = 0; x = 0; - var y: c_int = 0; + var y: c_int = surface.*.h; // white: false, black: true var color: bool = false; while (i < source_code.len) : (i += 1) {