mirror of https://github.com/stella-emu/stella.git
Eliminate unused variable.
This commit is contained in:
parent
2f10781b6d
commit
ad850959c0
|
@ -58,7 +58,6 @@ static AboutBox *sharedInstance = nil;
|
|||
NSString *versionString;
|
||||
NSDictionary *infoDictionary;
|
||||
CFBundleRef localInfoBundle;
|
||||
NSDictionary *localInfoDict;
|
||||
|
||||
if (![[NSBundle mainBundle] loadNibNamed:@"AboutBox" owner:self topLevelObjects:nil])
|
||||
{
|
||||
|
@ -73,7 +72,7 @@ static AboutBox *sharedInstance = nil;
|
|||
|
||||
// Get the localized info dictionary (InfoPlist.strings)
|
||||
localInfoBundle = CFBundleGetMainBundle();
|
||||
localInfoDict = (NSDictionary *) CFBundleGetLocalInfoDictionary( localInfoBundle );
|
||||
CFBundleGetLocalInfoDictionary(localInfoBundle);
|
||||
|
||||
// Setup the app name field
|
||||
appName = @"Stella";
|
||||
|
|
Loading…
Reference in New Issue