do not dump the whole qe3bsp.bat, only the actual step lines to avoid confusion

This commit is contained in:
ttimo 2022-11-15 10:27:26 -06:00
parent 6ac09d6f73
commit b9d0a99e84
1 changed files with 7 additions and 7 deletions

View File

@ -1225,6 +1225,7 @@ void RunBsp( char *command ){
for ( i = 0; i < sys->len; i++ ) for ( i = 0; i < sys->len; i++ )
{ {
strSys += (char *)g_ptr_array_index( sys, i ); strSys += (char *)g_ptr_array_index( sys, i );
Sys_Printf( "\n%s\n", (char *)g_ptr_array_index( sys, i ) );
strSys += "\nIF %ERRORLEVEL% NEQ 0 goto error\n"; strSys += "\nIF %ERRORLEVEL% NEQ 0 goto error\n";
} }
strSys += "\ strSys += "\
@ -1304,15 +1305,14 @@ pause\n\
#ifdef _WIN32 #ifdef _WIN32
Sys_Printf( "Running bsp command...\n" ); Sys_Printf( "Running bsp command...\n" );
Sys_Printf( "\n%s\n", strSys.GetBuffer() );
Q_Exec( batpath, NULL, g_strTempPath.GetBuffer(), true ); Q_Exec( batpath, NULL, g_strTempPath.GetBuffer(), true );
#endif #endif
} }
// free the strings and the array // free the strings and the array
for ( i = 0; i < sys->len; i++ ) { for ( i = 0; i < sys->len; i++ ) {
delete[](char*)g_ptr_array_index( sys, i ); delete[](char*)g_ptr_array_index( sys, i );
} }
g_ptr_array_free( sys, TRUE ); g_ptr_array_free( sys, TRUE );
sys = NULL; sys = NULL;
} }