diff options
| author | 2014-09-18 22:27:06 -0400 | |
|---|---|---|
| committer | 2014-09-18 22:27:06 -0400 | |
| commit | a9630a9d2b432bea7bdfef4aa462035b98b34517 (patch) | |
| tree | 258010943e989fc61a2a439ff15ead7ed3d11a6f /src/video_core/debug_utils | |
| parent | Merge pull request #107 from lioncash/sprintf (diff) | |
| parent | Kernel: Implement the Close command for Archive, File and Directory. (diff) | |
| download | yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.gz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.tar.xz yuzu-a9630a9d2b432bea7bdfef4aa462035b98b34517.zip | |
Merge pull request #70 from linkmauve/master
Implement filesystem services, and the required kernel objects.
Diffstat (limited to 'src/video_core/debug_utils')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 48e6dd182..8f4aa0ad0 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -336,7 +336,7 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) { | |||
| 336 | png_infop info_ptr = nullptr; | 336 | png_infop info_ptr = nullptr; |
| 337 | 337 | ||
| 338 | // Open file for writing (binary mode) | 338 | // Open file for writing (binary mode) |
| 339 | File::IOFile fp(filename, "wb"); | 339 | FileUtil::IOFile fp(filename, "wb"); |
| 340 | 340 | ||
| 341 | // Initialize write structure | 341 | // Initialize write structure |
| 342 | png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr); | 342 | png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr); |