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

@ -4,7 +4,6 @@
#pragma once
#include "Common/Common.h"
#include "VideoCommon/VideoBackendBase.h"
namespace Null
@ -15,11 +14,7 @@ class VideoBackend : public VideoBackendBase
void Shutdown() override;
std::string GetName() const override { return "Null"; }
std::string GetDisplayName() const override
{
// i18n: Null is referring to the null video backend, which renders nothing
return _trans("Null");
}
std::string GetDisplayName() const override;
void InitBackendInfo() override;
};
} // namespace Null