.gitignore: fix the build directory pattern
This commit is contained in:
parent
2fcaca0603
commit
7e39cf3b0d
|
@ -5,7 +5,7 @@ Thumbs.db
|
||||||
# Ignore autogenerated source files
|
# Ignore autogenerated source files
|
||||||
Source/Core/Common/scmrev.h
|
Source/Core/Common/scmrev.h
|
||||||
# Ignore files output by build
|
# Ignore files output by build
|
||||||
/[Bb]uild[-_]*/
|
/[Bb]uild*/
|
||||||
/[Bb]inary/
|
/[Bb]inary/
|
||||||
/obj/
|
/obj/
|
||||||
# Ignore various files created by visual studio/msbuild
|
# Ignore various files created by visual studio/msbuild
|
||||||
|
|
|
@ -61,12 +61,12 @@ void VideoBackend::UpdateFPSDisplay(const std::string& text)
|
||||||
EmuWindow::SetWindowText(StringFromFormat("%s | D3D | %s", scm_rev_str, text.c_str()));
|
EmuWindow::SetWindowText(StringFromFormat("%s | D3D | %s", scm_rev_str, text.c_str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string VideoBackend::GetName()
|
std::string VideoBackend::GetName() const
|
||||||
{
|
{
|
||||||
return "D3D";
|
return "D3D";
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string VideoBackend::GetDisplayName()
|
std::string VideoBackend::GetDisplayName() const
|
||||||
{
|
{
|
||||||
return "Direct3D";
|
return "Direct3D";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue