--- infinity/key/BIFFEntry.java.orig 2008-08-18 04:24:57.000000000 -0400 +++ infinity/key/BIFFEntry.java 2008-08-18 04:25:37.000000000 -0400 @@ -20,7 +20,7 @@ public BIFFEntry(String filename) { - this.filename = filename; + this.filename = filename.toLowerCase(); // Location: Indicates where file might be found // Bit 1: Data or movies (LSB) // Bit 2: ??? @@ -45,6 +45,7 @@ if (filename.startsWith("\\")) filename = filename.substring(1); filename = filename.replace('\\', '/').replace(':', '/'); + filename = filename.toLowerCase(); } void setIndex(int index)