Applied changes to jp3d_to_volume.c that didn't pass in previous revision (rev545)
This commit is contained in:
parent
372eab810b
commit
1027d05064
|
@ -197,7 +197,7 @@ int get_file_format(char *filename) {
|
||||||
static const char *extension[] = {"pgx", "bin", "j3d", "jp3d", "j2k", "img"};
|
static const char *extension[] = {"pgx", "bin", "j3d", "jp3d", "j2k", "img"};
|
||||||
static const int format[] = { PGX_DFMT, BIN_DFMT, J3D_CFMT, J3D_CFMT, J2K_CFMT, IMG_DFMT};
|
static const int format[] = { PGX_DFMT, BIN_DFMT, J3D_CFMT, J3D_CFMT, J2K_CFMT, IMG_DFMT};
|
||||||
char * ext = strrchr(filename, '.') + 1;
|
char * ext = strrchr(filename, '.') + 1;
|
||||||
for(i = 0; i < sizeof(format); i++) {
|
for(i = 0; i < sizeof(format) / sizeof(format[0]); i++) {
|
||||||
if(strnicmp(ext, extension[i], 3) == 0) {
|
if(strnicmp(ext, extension[i], 3) == 0) {
|
||||||
return format[i];
|
return format[i];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue