mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Renderer: Remove write-only variable.
Sorry, merge failure.
This commit is contained in:
parent
db0509560e
commit
21e42c68c4
2 changed files with 0 additions and 8 deletions
|
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue