mirror of https://github.com/PCSX2/pcsx2.git
GSRenderer: Fix Wunused-variable warning.
This commit is contained in:
parent
c84e56329f
commit
2a20119fbb
|
@ -393,12 +393,11 @@ void GSRenderer::VSync(int field)
|
|||
{
|
||||
m_perfmon.Update();
|
||||
|
||||
double fps = 1000.0f / m_perfmon.Get(GSPerfMon::Frame);
|
||||
|
||||
std::string s;
|
||||
|
||||
#ifdef GSTITLEINFO_API_FORCE_VERBOSE
|
||||
{
|
||||
const double fps = 1000.0f / m_perfmon.Get(GSPerfMon::Frame);
|
||||
//GS owns the window's title, be verbose.
|
||||
static const char* aspect_ratio_names[static_cast<int>(AspectRatioType::MaxCount)] = { "Stretch", "4:3", "16:9" };
|
||||
|
||||
|
|
Loading…
Reference in New Issue