dont get stuck if the user specifies a crashing retroshader

This commit is contained in:
zeromus 2014-06-13 01:27:26 +00:00
parent 398577245e
commit b96ebaafeb
1 changed files with 5 additions and 0 deletions

View File

@ -40,6 +40,11 @@ namespace BizHawk.Client.EmuHawk.Filters
//acquire content
string path = Path.Combine(baseDirectory, pass.ShaderPath);
if (!File.Exists(path))
{
ok = false;
break;
}
string content = File.ReadAllText(path);
var shader = new RetroShader(Owner, content, debug);