Browse Source

pnmimagetypes: Recognize .bw as extension for SGI images

rdb 2 years ago
parent
commit
eee10c9feb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pnmimagetypes/pnmFileTypeSGI.cxx

+ 1 - 1
panda/src/pnmimagetypes/pnmFileTypeSGI.cxx

@@ -24,7 +24,7 @@
 using std::string;
 
 static const char * const extensions_sgi[] = {
-  "rgb", "rgba", "sgi"
+  "rgb", "rgba", "sgi", "bw"
 };
 static const int num_extensions_sgi = sizeof(extensions_sgi) / sizeof(const char *);