]> git.xonotic.org Git - xonotic/netradiant.git/commitdiff
do not load tex-* dpk by default, only rely on map DEPS
authorThomas Debesse <dev@illwieckz.net>
Sun, 26 Mar 2017 01:44:21 +0000 (03:44 +0200)
committerThomas Debesse <dev@illwieckz.net>
Sun, 9 Apr 2017 12:52:00 +0000 (14:52 +0200)
plugins/vfspk3/vfs.cpp

index 7851210aac1e019b8a96cf0133d81faa17c0367a..e92bad76c016694bda7f4391d1fa2c0b6f478050 100644 (file)
@@ -862,28 +862,12 @@ void initialise(){
 
                // prevent VFS double start, for MapName="" and MapName="unnamed.map"
                if ( string_length( GlobalRadiant().getMapName() ) ){
-                       // map's tex-* paks have precedence over any other tex-* paks
+                       // load map's paks from DEPS
                        char* mappakname = GetCurrentMapDpkPakName();
                        if ( mappakname != NULL ) {
                                LoadDpkPakWithDeps( mappakname );
                                string_release( mappakname, string_length( mappakname ) );
                        }
-
-                       for ( PakfilePaths::iterator i = g_pakfile_paths.begin(); i != g_pakfile_paths.end(); ++i ) {
-                               if ( strncmp( i->first.c_str(), "tex-", 4 ) != 0 ) continue;
-                               // firstly load latest version of pak
-                               const char *paknamever = i->first.c_str();
-                               const char *c = strchr( paknamever, '_' );
-                               char *paknameonly;
-                               if ( c ) paknameonly = string_clone_range( StringRange( paknamever, c ) );
-                               pakname = GetLatestDpkPakVersion( paknameonly );
-                               if (pakname != NULL) {
-                                       LoadDpkPakWithDeps( pakname );
-                               }
-                               if ( c ) string_release( paknameonly, string_length( paknameonly ) );
-                               // then load this specific version
-                               LoadDpkPakWithDeps( paknamever );
-                       }
                }
 
                g_pakfile_paths.clear();