Explorar el Código

Default to system-wide install of font

Luna Stadler %!s(int64=4) %!d(string=hace) años
padre
commit
8b9dcec1af
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      zig/sdl/hello_sdl.zig

+ 1 - 1
zig/sdl/hello_sdl.zig

@ -280,7 +280,7 @@ pub fn main() !void {
280 280
    }
281 281
    defer c.TTF_Quit();
282 282
283
    var font_file = if (args.len > 1) args[1] else "./FantasqueSansMono-Regular.ttf";
283
    var font_file = if (args.len > 1) args[1] else "/usr/share/fonts/TTF/FantasqueSansMono-Regular.ttf";
284 284
    const font = c.TTF_OpenFont(font_file, 16) orelse {
285 285
        c.SDL_Log("Unable to load font: %s", c.TTF_GetError());
286 286
        return error.TTFInitializationFailed;