VideoBackends/Null: Remove unnecessary includes

This commit is contained in:
Lioncash
2019-07-27 15:50:41 -04:00
parent 3c8f6bca5a
commit bdcc5853d5
6 changed files with 9 additions and 20 deletions

View File

@ -13,6 +13,7 @@
#include "VideoBackends/Null/VertexManager.h"
#include "VideoBackends/Null/VideoBackend.h"
#include "Common/Common.h"
#include "Common/MsgHandler.h"
#include "VideoCommon/FramebufferManager.h"
@ -97,4 +98,10 @@ void VideoBackend::Shutdown()
ShutdownShared();
}
std::string VideoBackend::GetDisplayName() const
{
// i18n: Null is referring to the null video backend, which renders nothing
return _trans("Null");
}
} // namespace Null