Yeah, it's late...
-- 
BOFH excuse #296:

The hardware bus needs a new token.
Index: src/frontend.c
===================================================================
--- src/frontend.c      (revision 419)
+++ src/frontend.c      (working copy)
@@ -511,7 +511,7 @@
                        strcpy(pLevelName,DEFAULT_LEVEL);
                        seq_ClearSeqList();
 
-                       
seq_AddSeqToList("cam1/c001.rpl",NULL,"CAM1/c001.txa",FALSE,0);
+                       
seq_AddSeqToList("cam1/c001.rpl",NULL,"cam1/c001.txa",FALSE,0);
 
                        seq_StartNextFullScreenVideo();
             break;
Index: lib/framework/Makefile.raw
===================================================================
--- lib/framework/Makefile.raw  (revision 419)
+++ lib/framework/Makefile.raw  (working copy)
@@ -7,7 +7,6 @@
        frame.c \
        frameresource.c \
        heap.c \
-       ignorecase.c \
        input.c \
        mem.c \
        mono.c \
Index: lib/framework/Makefile.am
===================================================================
--- lib/framework/Makefile.am   (revision 419)
+++ lib/framework/Makefile.am   (working copy)
@@ -15,7 +15,6 @@
        frame.c \
        frameresource.c \
        heap.c \
-       ignorecase.c \
        input.c \
        mem.c \
        strres.c \
@@ -27,7 +26,6 @@
        memint.h \
        treap.h \
        fractions.h \
-       ignorecase.h \
        mono.h \
        strres.h \
        treapint.h \
Index: lib/framework/frame.c
===================================================================
--- lib/framework/frame.c       (revision 419)
+++ lib/framework/frame.c       (working copy)
@@ -459,9 +459,11 @@
 
        pfile = PHYSFS_openRead(pFileName);
        if (!pfile) {
-               debug(LOG_ERROR, "loadFile2: %s could not be opened: %s", 
pFileName,
-                     PHYSFS_getLastError());
-               assert(FALSE);
+               if (hard_fail) {
+                       debug(LOG_ERROR, "loadFile2: %s could not be opened: 
%d", pFileName, PHYSFS_getLastError());
+                       assert(FALSE);
+               }
+               debug(LOG_NEVER, "loadFile2: %s could not be opened: %d", 
pFileName, PHYSFS_getLastError());
                return FALSE;
        }
        filesize = PHYSFS_fileLength(pfile);
_______________________________________________
Warzone-dev mailing list
[email protected]
https://mail.gna.org/listinfo/warzone-dev

Reply via email to