Skip to content

Commit

Permalink
SDLBackend: replace tabs with spaces
Browse files Browse the repository at this point in the history
Fixes compilation error described in david-vanderson#118. Multiple spaces added to
preserve indentation.
  • Loading branch information
raddari committed Sep 7, 2024
1 parent 911c57e commit 4c0c199
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/backends/SDLBackend.zig
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ pub fn initWindow(options: InitOptions) !SDLBackend {
var mdpi: ?f32 = null;

// for X11, try to grab the output of xrdb -query
//*customization: -color
//Xft.dpi: 96
//Xft.antialias: 1
//*customization: -color
//Xft.dpi: 96
//Xft.antialias: 1
if (mdpi == null and builtin.os.tag == .linux) {
var stdout = std.ArrayList(u8).init(options.allocator);
defer stdout.deinit();
Expand Down

0 comments on commit 4c0c199

Please sign in to comment.