video_core: Remove unused variables

This commit is contained in:
Lioncash 2015-09-10 10:26:21 -04:00
parent 248b2993e8
commit 526eb33d1e
3 changed files with 0 additions and 4 deletions

View file

@ -298,7 +298,6 @@ void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, c
}
// Write data to file
static int dump_index = 0;
std::ofstream file(filename, std::ios_base::out | std::ios_base::binary);
for (auto& chunk : writing_queue) {
@ -695,7 +694,6 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) {
for (unsigned y = 0; y < texture_config.height; ++y)
{
u8* row_ptr = (u8*)buf + y * row_stride;
u8* ptr = row_ptr;
png_write_row(png_ptr, row_ptr);
}