mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-13 21:40:41 +00:00
Fix if() being backwards
This commit is contained in:
@@ -603,9 +603,9 @@ namespace renderdocui.Windows.Dialogs
|
||||
public FileOpenedEventArgs(bool NT, string fn)
|
||||
{
|
||||
if(NT)
|
||||
m_fn = fn;
|
||||
else
|
||||
m_fn = fn.Replace('/', '\\');
|
||||
else
|
||||
m_fn = fn;
|
||||
}
|
||||
|
||||
public string FileName
|
||||
|
||||
Reference in New Issue
Block a user