Skip to content

Commit

Permalink
Renderer: Remove write-only variable.
Browse files Browse the repository at this point in the history
Sorry, merge failure.
  • Loading branch information
degasus committed Oct 8, 2016
1 parent db05095 commit 21e42c6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions Source/Core/VideoCommon/RenderBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,6 @@ bool Renderer::IsFrameDumping()
{
AVIDump::Stop();
std::vector<u8>().swap(m_frame_data);
m_last_framedump_width = m_last_framedump_height = 0;
m_AVI_dumping = false;
OSD::AddMessage("Stop dumping frames", 2000);
}
Expand All @@ -561,10 +560,6 @@ void Renderer::DumpFrameData(const u8* data, int w, int h, int stride, bool swap
if (w == 0 || h == 0)
return;

m_last_framedump_width = w;
m_last_framedump_height = h;
m_last_framedump_stride = stride;

// TODO: Refactor this. Right now it's needed for the implace flipping of the image.
m_frame_data.assign(data, data + stride * h);

Expand Down
3 changes: 0 additions & 3 deletions Source/Core/VideoCommon/RenderBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,6 @@ class Renderer
std::vector<u8> m_frame_data;
bool m_AVI_dumping = false;
bool m_last_frame_dumped = false;
int m_last_framedump_width = 0;
int m_last_framedump_height = 0;
int m_last_framedump_stride = 0;
};

extern std::unique_ptr<Renderer> g_renderer;

0 comments on commit 21e42c6

Please sign in to comment.