don't call OpenTray on mac

This commit is contained in:
Brian Matzon 2005-04-12 18:48:40 +00:00
parent e1a63721f1
commit c3bcaf3b7b
1 changed files with 4 additions and 0 deletions

View File

@ -1391,7 +1391,11 @@ JNIEXPORT jint JNICALL Java_org_lwjgl_fmod3_FSound_nFSOUND_1Stream_1SetTime(JNIE
* Signature: (C)Z
*/
JNIEXPORT jboolean JNICALL Java_org_lwjgl_fmod3_FSound_FSOUND_1CD_1OpenTray(JNIEnv * env, jclass clazz, jchar drive, jboolean open) {
#ifdef _MACOSX
return false;
#else
return fmod_instance->FSOUND_CD_OpenTray(drive, open);
#endif
}
/*