Skip to content

Commit

Permalink
- Fixed: Cocoa IWAD picker needed to be updated to handle git version…
Browse files Browse the repository at this point in the history
… strings.
  • Loading branch information
Blzut3 committed Jul 3, 2013
1 parent 5b17c07 commit 80a3e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdl/iwadpicker_cocoa.mm
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ - (int)pickIWad:(WadStuff *)wads:(int) numwads:(bool) showwin:(int) defaultiwad
cancelled = false;

app = [NSApplication sharedApplication];
id windowTitle = [NSString stringWithUTF8String:GAMESIG " " DOTVERSIONSTR ": Select an IWAD to use"];
id windowTitle = [NSString stringWithFormat:@GAMESIG " %s: Select an IWAD to use", GetVersionString()];

NSRect frame = NSMakeRect(0, 0, 440, 450);
window = [[NSWindow alloc] initWithContentRect:frame styleMask:NSTitledWindowMask backing:NSBackingStoreBuffered defer:NO];
Expand Down

0 comments on commit 80a3e4f

Please sign in to comment.