Merge branch 'master' of https://github.com/TTimo/GtkRadiant into fixTexCrash

This commit is contained in:
Pan7 2017-08-27 17:58:14 +02:00
commit 69972f9458
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ void CSG_Subtract( void ){
// If the brushes are all caulk, then force caulk into all the new splits
for ( b = selected_brushes.next; b != &selected_brushes; b = b->next ) {
for ( auto f = b->brush_faces; f; f = f->next ) {
for ( face_t *f = b->brush_faces; f; f = f->next ) {
if ( strcmp( f->pShader->getName(), g_pGameDescription->mCaulkShader.GetBuffer() ) ) {
caulk = false;
break;