windows: remove unrelated changes from DLL CRT fix branch

Revert .gitattributes, CI test-windows job, and CRLF octants.txt
fix back to main. These belong in their own branches/PRs.
This commit is contained in:
Alessandro De Blasis
2026-03-26 11:44:10 +01:00
committed by Mitchell Hashimoto
parent 6afc174a4f
commit 656700d803
3 changed files with 2 additions and 69 deletions

View File

@@ -102,14 +102,7 @@ pub fn draw1CD00_1CDE5(
const data = @embedFile("octants.txt");
var it = std.mem.splitScalar(u8, data, '\n');
while (it.next()) |raw_line| {
// Trim \r so this works with both LF and CRLF line endings,
// since git may convert octants.txt to CRLF on Windows checkouts.
const line = if (raw_line.len > 0 and raw_line[raw_line.len - 1] == '\r')
raw_line[0 .. raw_line.len - 1]
else
raw_line;
while (it.next()) |line| {
// Skip comments
if (line.len == 0 or line[0] == '#') continue;