diff options
| author | 2014-09-12 00:17:15 +0200 | |
|---|---|---|
| committer | 2014-09-17 14:35:45 +0000 | |
| commit | 6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc (patch) | |
| tree | dd5cdcd8b1f9822a019362b44a44ec9505adff8a /src/video_core/debug_utils | |
| parent | Common: Return the number of items read/written in IOFile’s methods instead... (diff) | |
| download | yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.tar.gz yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.tar.xz yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.zip | |
Common: Rename the File namespace to FileUtil, to match the filename and prevent collisions.
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); |