muh macos support
This commit is contained in:
		
							parent
							
								
									68145616f5
								
							
						
					
					
						commit
						2a43d56772
					
				@ -512,6 +512,11 @@ bool AOOptionsDialog::needs_default_audiodev()
 | 
			
		||||
{
 | 
			
		||||
    return false;
 | 
			
		||||
}
 | 
			
		||||
#elif defined __APPLE__
 | 
			
		||||
bool AOOptionsDialog::needs_default_audiodev()
 | 
			
		||||
{
 | 
			
		||||
    return false;
 | 
			
		||||
}
 | 
			
		||||
#else
 | 
			
		||||
#error This operating system is not supported.
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
@ -3508,6 +3508,11 @@ void Courtroom::load_bass_opus_plugin()
 | 
			
		||||
{
 | 
			
		||||
  BASS_PluginLoad("libbassopus.so", 0);
 | 
			
		||||
}
 | 
			
		||||
#elif defined __APPLE__
 | 
			
		||||
void Courtroom::load_bass_opus_plugin()
 | 
			
		||||
{
 | 
			
		||||
  BASS_PluginLoad("libbassopus.dylib", 0);
 | 
			
		||||
}
 | 
			
		||||
#else
 | 
			
		||||
#error This operating system is unsupported for bass plugins.
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
@ -50,6 +50,13 @@ QString get_hdid()
 | 
			
		||||
  return "gxcpz32sa9fnwic92mfbs0";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#elif defined __APPLE__
 | 
			
		||||
QString get_hdid()
 | 
			
		||||
{
 | 
			
		||||
  //hdids are broken at this point anyways
 | 
			
		||||
  return "just a mac passing by";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#else
 | 
			
		||||
 | 
			
		||||
#error This operating system is unsupported for hardware functions.
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user