1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Mac VST-host resource file fix.

This commit is contained in:
jules 2011-12-14 11:41:16 +00:00
parent f703feb61e
commit 678b532dad

View file

@ -2127,6 +2127,8 @@ int VSTPluginInstance::dispatch (const int opcode, const int index, const int va
try
{
#if JUCE_MAC
const int oldResFile = CurResFile();
if (module->resFileId != 0)
UseResFile (module->resFileId);
#endif
@ -2134,7 +2136,12 @@ int VSTPluginInstance::dispatch (const int opcode, const int index, const int va
result = effect->dispatcher (effect, opcode, index, value, ptr, opt);
#if JUCE_MAC
module->resFileId = CurResFile();
const int newResFile = CurResFile();
if (newResFile != oldResFile) // avoid confusing the parent app's resource file with the plug-in's
{
module->resFileId = newResFile;
UseResFile (oldResFile);
}
#endif
}
catch (...)