mirror of https://github.com/snes9xgit/snes9x.git
Win32: only display cg error message if shader file has been set
This commit is contained in:
parent
6ebc68c017
commit
b442002071
|
@ -716,8 +716,9 @@ void COpenGL::checkForCgError(const char *situation)
|
|||
bool COpenGL::SetShadersCG(const TCHAR *file)
|
||||
{
|
||||
if(!cgAvailable) {
|
||||
MessageBox(NULL, TEXT("The CG runtime is unavailable, CG shaders will not run.\nConsult the snes9x readme for information on how to obtain the runtime."), TEXT("CG Error"),
|
||||
MB_OK|MB_ICONEXCLAMATION);
|
||||
if(file)
|
||||
MessageBox(NULL, TEXT("The CG runtime is unavailable, CG shaders will not run.\nConsult the snes9x readme for information on how to obtain the runtime."), TEXT("CG Error"),
|
||||
MB_OK|MB_ICONEXCLAMATION);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue