diff --git a/BasiliskII/src/MacOSX/PrefsEditor.mm b/BasiliskII/src/MacOSX/PrefsEditor.mm index c9d5dca1..86a1082c 100644 --- a/BasiliskII/src/MacOSX/PrefsEditor.mm +++ b/BasiliskII/src/MacOSX/PrefsEditor.mm @@ -309,14 +309,14 @@ if ( newbpp == init_depth && newx == init_width && newy == init_height && newtype == display_type ) { - NSLog(@"No changed GUI items in ChangeScreen"); + D(NSLog(@"No changed GUI items in ChangeScreen")); return; } // If we are changing type, supply some sensible defaults if ( newtype != display_type ) { - NSLog(@"Changing disylay type in ChangeScreen"); + D(NSLog(@"Changing display type in ChangeScreen")); if ( newtype == DISPLAY_SCREEN ) // If changing to full screen { // supply main screen dimensions as a default @@ -371,7 +371,8 @@ if ( display_type != DISPLAY_SCREEN ) { - NSLog(@"Display type is not SCREEN (%d), resizing window", display_type); + D(NSLog(@"Display type is not SCREEN (%d), resizing window", + display_type)); resizeWinTo(newx, newy); } } @@ -533,7 +534,8 @@ if ( strcmp(str, path) == 0 ) { PrefsRemoveItem("disk", tmp); - D(NSLog(@"%s - Deleted prefs entry \"disk\", %d", __PRETTY_FUNCTION__, tmp)); + D(NSLog(@"%s - Deleted prefs entry \"disk\", %d", + __PRETTY_FUNCTION__, tmp)); edited = YES; break; } @@ -542,7 +544,8 @@ if ( str == NULL ) { - NSLog(@"%s - Couldn't find any disk preference to match %s", __PRETTY_FUNCTION__, path); + NSLog(@"%s - Couldn't find any disk preference to match %s", + __PRETTY_FUNCTION__, path); return NULL; }