mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
I don't know why this won't load on OSX, but at least now we can
tell which of these modules fails to load... git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1714 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -54,7 +54,7 @@ namespace AOSound
|
|||||||
device = ao_open_live(default_driver, &format, NULL /* no options */);
|
device = ao_open_live(default_driver, &format, NULL /* no options */);
|
||||||
if (device == NULL)
|
if (device == NULL)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Error opening device.\n");
|
fprintf(stderr, "DSP_HLE: Error opening AO device.\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
buf_size = format.bits/8 * format.channels * format.rate;
|
buf_size = format.bits/8 * format.channels * format.rate;
|
||||||
|
@ -110,7 +110,7 @@ namespace AOSound
|
|||||||
//vi vill ha access till DSOUND så...
|
//vi vill ha access till DSOUND så...
|
||||||
device = ao_open_live(default_driver, &format, NULL /* no options */);
|
device = ao_open_live(default_driver, &format, NULL /* no options */);
|
||||||
if (device == NULL) {
|
if (device == NULL) {
|
||||||
fprintf(stderr, "Error opening device.\n");
|
fprintf(stderr, "DSP_LLE: Error opening AO device.\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
buf_size = format.bits/8 * format.channels * format.rate;
|
buf_size = format.bits/8 * format.channels * format.rate;
|
||||||
|
Reference in New Issue
Block a user