Browse Source

Fixing line breaks from edits on MacOS.

David Piuva 7 months ago
parent
commit
56fd746c1e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Source/DFPSR/DFPSR.DsrHead

+ 4 - 4
Source/DFPSR/DFPSR.DsrHead

@@ -33,8 +33,8 @@ if Graphics
 		Link "X11"
 		WindowManager = "../windowManagers/X11Window.cpp"
 	end if
-	if MacOS
-		Message "  Using Cocoa\n"
+	if MacOS
+		Message "  Using Cocoa\n"
 		Framework "Cocoa"
 		WindowManager = "../windowManagers/CocoaWindow.mm"
 	end if
@@ -56,10 +56,10 @@ if Sound
 		Message "  Using Alsa\n"
 		Link "asound"
 		SoundManager = "../soundManagers/AlsaSound.cpp"
-	end if
+	end if
 	if MacOS
 		Message "  Using CoreAudio\n"
-		#Linking to AudioUnit, which is a part of CoreAudio.
+		#Linking to AudioUnit, which is a part of CoreAudio.
 		Framework "AudioUnit"
 		SoundManager = "../soundManagers/CoreAudioSound.cpp"
 	end if