diff options
| author | 2015-04-05 02:36:43 -0400 | |
|---|---|---|
| committer | 2015-04-05 02:36:43 -0400 | |
| commit | 8060c519a6d0b09c80b51cf97f598cd272db1287 (patch) | |
| tree | e1f98168f2ebee36f3f11932e61b88542d9c0be5 /src/video_core/debug_utils | |
| parent | Merge pull request #680 from archshift/bg-color (diff) | |
| download | yuzu-8060c519a6d0b09c80b51cf97f598cd272db1287.tar.gz yuzu-8060c519a6d0b09c80b51cf97f598cd272db1287.tar.xz yuzu-8060c519a6d0b09c80b51cf97f598cd272db1287.zip | |
Changed occurences of colour to color for consistency
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 83982b4f2..c460146cb 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -597,7 +597,7 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) { | |||
| 597 | 597 | ||
| 598 | png_init_io(png_ptr, fp.GetHandle()); | 598 | png_init_io(png_ptr, fp.GetHandle()); |
| 599 | 599 | ||
| 600 | // Write header (8 bit colour depth) | 600 | // Write header (8 bit color depth) |
| 601 | png_set_IHDR(png_ptr, info_ptr, texture_config.width, texture_config.height, | 601 | png_set_IHDR(png_ptr, info_ptr, texture_config.width, texture_config.height, |
| 602 | 8, PNG_COLOR_TYPE_RGB /*_ALPHA*/, PNG_INTERLACE_NONE, | 602 | 8, PNG_COLOR_TYPE_RGB /*_ALPHA*/, PNG_INTERLACE_NONE, |
| 603 | PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); | 603 | PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); |