forked from cebix/macemu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
User can now specify wether the selected disk image is a CDROM (requi…
…red for some games e.g. Diablo 2)
- Loading branch information
1 parent
a3abfdc
commit fd62819
Showing
13 changed files
with
771 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// DiskType.h | ||
// SheepShaver | ||
// | ||
// Created by maximilian on 01.02.14. | ||
// Copyright 2014 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
|
||
@interface DiskType : NSObject { | ||
NSString* _path; | ||
BOOL _isCDROM; | ||
} | ||
|
||
-(NSString*)path; | ||
-(BOOL)isCDROM; | ||
|
||
-(void)setPath:(NSString*)thePath; | ||
-(void)setIsCDROM:(BOOL)cdrom; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// | ||
// DiskType.m | ||
// SheepShaver | ||
// | ||
// Created by maximilian on 01.02.14. | ||
// Copyright 2014 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "DiskType.h" | ||
|
||
|
||
@implementation DiskType | ||
-(NSString*)path | ||
{ | ||
return _path; | ||
} | ||
-(BOOL)isCDROM | ||
{ | ||
return _isCDROM; | ||
} | ||
|
||
-(void)setPath:(NSString*)thePath | ||
{ | ||
_path = [thePath copy]; | ||
} | ||
-(void)setIsCDROM:(BOOL)cdrom | ||
{ | ||
_isCDROM=cdrom; | ||
} | ||
|
||
-(NSString*)description { | ||
return [NSString stringWithFormat:@"DiskType, path:%@ isCDROM:%@", _path, _isCDROM]; | ||
} | ||
|
||
@end |
Empty file modified
0
SheepShaver/src/MacOSX/Launcher/English.lproj/InfoPlist.strings
100644 → 100755
Empty file.
Empty file modified
0
SheepShaver/src/MacOSX/Launcher/English.lproj/MainMenu.nib/classes.nib
100644 → 100755
Empty file.
Empty file modified
0
SheepShaver/src/MacOSX/Launcher/English.lproj/MainMenu.nib/info.nib
100644 → 100755
Empty file.
Empty file modified
0
SheepShaver/src/MacOSX/Launcher/English.lproj/MainMenu.nib/keyedobjects.nib
100644 → 100755
Empty file.
Empty file modified
0
SheepShaver/src/MacOSX/Launcher/English.lproj/VMListWindow.nib/designable.nib
100644 → 100755
Empty file.
Empty file modified
0
SheepShaver/src/MacOSX/Launcher/English.lproj/VMListWindow.nib/keyedobjects.nib
100644 → 100755
Empty file.
826 changes: 630 additions & 196 deletions
826
SheepShaver/src/MacOSX/Launcher/English.lproj/VMSettingsWindow.nib/designable.nib
100644 → 100755
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
+4.64 KB
(110%)
SheepShaver/src/MacOSX/Launcher/English.lproj/VMSettingsWindow.nib/keyedobjects.nib
100644 → 100755
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters