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;
|
NSString *versionString;
|
||||||
NSDictionary *infoDictionary;
|
NSDictionary *infoDictionary;
|
||||||
CFBundleRef localInfoBundle;
|
CFBundleRef localInfoBundle;
|
||||||
NSDictionary *localInfoDict;
|
|
||||||
|
|
||||||
if (![[NSBundle mainBundle] loadNibNamed:@"AboutBox" owner:self topLevelObjects:nil])
|
if (![[NSBundle mainBundle] loadNibNamed:@"AboutBox" owner:self topLevelObjects:nil])
|
||||||
{
|
{
|
||||||
|
@ -73,7 +72,7 @@ static AboutBox *sharedInstance = nil;
|
||||||
|
|
||||||
// Get the localized info dictionary (InfoPlist.strings)
|
// Get the localized info dictionary (InfoPlist.strings)
|
||||||
localInfoBundle = CFBundleGetMainBundle();
|
localInfoBundle = CFBundleGetMainBundle();
|
||||||
localInfoDict = (NSDictionary *) CFBundleGetLocalInfoDictionary( localInfoBundle );
|
CFBundleGetLocalInfoDictionary(localInfoBundle);
|
||||||
|
|
||||||
// Setup the app name field
|
// Setup the app name field
|
||||||
appName = @"Stella";
|
appName = @"Stella";
|
||||||
|
|
Loading…
Reference in New Issue