Re-add missing braces from previous commit
This commit is contained in:
parent
e6f834f11b
commit
90b84ab632
|
@ -526,7 +526,9 @@ void CLanguage::LoadCurrentStrings ( bool ShowSelectDialog )
|
||||||
//Process the file
|
//Process the file
|
||||||
FILE *file = fopen(Filename.c_str(), "rb");
|
FILE *file = fopen(Filename.c_str(), "rb");
|
||||||
if (file == NULL)
|
if (file == NULL)
|
||||||
|
{
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
//Search for utf8 file marker
|
//Search for utf8 file marker
|
||||||
BYTE utf_bom[3];
|
BYTE utf_bom[3];
|
||||||
|
|
Loading…
Reference in New Issue