Browse Source

Merge branch 'master' of https://github.com/odin-lang/Odin

gingerBill 3 years ago
parent
commit
2ef6544ca2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/image/which.odin

+ 1 - 1
core/image/which.odin

@@ -119,7 +119,7 @@ which_bytes :: proc(data: []byte) -> Which_File_Type {
 				return .PPM
 			case '7':
 				return .PAM
-			case 'f', 'F':
+			case 'F', 'f':
 				return .PFM
 			}
 		}