Identation fixes

This commit is contained in:
Maximilian Irlinger 2014-09-19 07:19:11 +02:00
parent aea2b09d47
commit 4ee413bc35
2 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@
// Keyboard/Mouse
IBOutlet NSButton *useRawKeyCodes;
IBOutlet NSTextField *rawKeyCodes;
IBOutlet NSButton *browseRawKeyCodesButton;
IBOutlet NSButton *browseRawKeyCodesButton;
IBOutlet NSPopUpButton *mouseWheel;
IBOutlet NSTextField *scrollLines;
IBOutlet NSStepper *scrollLinesStepper;

View File

@ -396,15 +396,15 @@ static NSString *makeRelativeIfNecessary(NSString *path)
- (void) saveChanges: (id) sender
{
// Remove all disks
// Remove all disks
while (PrefsFindString("disk"))
PrefsRemoveItem("disk");
// Remove all cdroms
// Remove all cdroms
while (PrefsFindString("cdrom"))
PrefsRemoveItem("cdrom");
// Write all disks
// Write all disks
for (int i = 0; i < [diskArray count]; i++) {
DiskType *d = [diskArray objectAtIndex:i];
PrefsAddString([d isCDROM] ? "cdrom" : "disk", [[d path] UTF8String]);