Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Sep 10, 2023
1 parent ac3bcfb commit 5718fae
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Whisky/Models/BitmapInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ struct BitmapInfoHeader: Hashable {
let index = Int(data.extract(UInt8.self, offset: offset) ?? 0)
if index >= colorTable.count {
pixelRow.append(ColorQuad(red: 0, green: 0, blue: 0, alpha: 0))
print("Attempted to access index \(index) of ColorTable with count \(colorTable.count)!")
} else {
pixelRow.append(colorTable[Int(index)])
}
Expand Down

0 comments on commit 5718fae

Please sign in to comment.