Changeset - r14717:163e5bb4aabf
[Not reviewed]
master
0 1 0
yexo - 14 years ago 2010-03-04 20:07:39
yexo@openttd.org
(svn r19315) -Fix (r19295): Show the filename in the newgrf windows if the newgrf name is not empty
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_config.cpp
Show inline comments
 
@@ -43,7 +43,7 @@ GRFConfig::~GRFConfig()
 
 */
 
const char *GRFConfig::GetName() const
 
{
 
	if (this->name == NULL) return this->filename;
 
	if (StrEmpty(this->name)) return this->filename;
 
	return this->name;
 
}
 

	
0 comments (0 inline, 0 general)