]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/preferences.cpp
Q2Tools source - didn't import this in initially
[xonotic/netradiant.git] / radiant / preferences.cpp
index 3a43c35a2a04d668982c2f8b354aafd27355f836..430c751fac7136b18ea300825b1817e697102d6f 100644 (file)
@@ -3408,6 +3408,9 @@ void CGameInstall::Run() {
        // write out the game file
        Str gameFilePath = g_strAppPath.GetBuffer();
        gameFilePath += "games/";
+       if(CheckFile(gameFilePath) != PATH_DIRECTORY) {
+               radCreateDirectory(gameFilePath);
+       }
        gameFilePath += m_strName.GetBuffer();
        gameFilePath += ".game";
        Sys_Printf( "game file: %s\n", gameFilePath.GetBuffer() );
@@ -3441,6 +3444,12 @@ void CGameInstall::Run() {
                source += "/install/";
                Str dest = m_strEngine.GetBuffer();
                CopyTree( source.GetBuffer(), dest.GetBuffer() );
+               // Hardcoded fix for "missing" shaderlist in gamepack
+               dest += "/baseq3/scripts/shaderlist.txt";
+               if(CheckFile(dest.GetBuffer()) != PATH_FILE) {
+                       source += "baseq3/scripts/default_shaderlist.txt";
+                       radCopyFile(source.GetBuffer(),dest.GetBuffer());
+               }
                fprintf( fg, "  basegame=\"baseq3\"\n" );
                break;
        }