mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-30 18:09:09 +00:00
(svn r20692) -Fix [FS#4055]: crash after downloading missing content
This commit is contained in:
@@ -188,7 +188,8 @@ void NetworkAfterNewGRFScan()
|
||||
item->info.compatible = false;
|
||||
} else {
|
||||
c->filename = f->filename;
|
||||
c->name = f->name;
|
||||
CleanUpGRFText(c->name);
|
||||
c->name = DuplicateGRFText(f->name);
|
||||
c->info = f->info;
|
||||
c->status = GCS_UNKNOWN;
|
||||
}
|
||||
|
@@ -28,6 +28,7 @@
|
||||
#include "../sortlist_type.h"
|
||||
#include "../company_func.h"
|
||||
#include "../core/geometry_func.hpp"
|
||||
#include "../newgrf_text.h"
|
||||
|
||||
#include "table/strings.h"
|
||||
#include "../table/sprites.h"
|
||||
@@ -811,7 +812,8 @@ public:
|
||||
}
|
||||
|
||||
c->filename = f->filename;
|
||||
c->name = f->name;
|
||||
CleanUpGRFText(c->name);
|
||||
c->name = DuplicateGRFText(f->name);
|
||||
c->info = f->info;
|
||||
c->status = GCS_UNKNOWN;
|
||||
}
|
||||
|
Reference in New Issue
Block a user