summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar bunnei2015-10-10 14:42:17 -0400
committerGravatar bunnei2015-10-10 14:42:17 -0400
commit04325e5980a649bea58aad349fc04eaf403aba3a (patch)
treedd23b69022f0b3df4a6c5542483c9f85258388ee /src/video_core/debug_utils
parentMerge pull request #1195 from Gareth422/secondary (diff)
parentCitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls. (diff)
downloadyuzu-04325e5980a649bea58aad349fc04eaf403aba3a.tar.gz
yuzu-04325e5980a649bea58aad349fc04eaf403aba3a.tar.xz
yuzu-04325e5980a649bea58aad349fc04eaf403aba3a.zip
Merge pull request #1194 from linkmauve/no-newline
Remove newlines in LOG_* calls
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index aa1f1484c..f1cfa9361 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -641,7 +641,7 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) {
641 // Initialize write structure 641 // Initialize write structure
642 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr); 642 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
643 if (png_ptr == nullptr) { 643 if (png_ptr == nullptr) {
644 LOG_ERROR(Debug_GPU, "Could not allocate write struct\n"); 644 LOG_ERROR(Debug_GPU, "Could not allocate write struct");
645 goto finalise; 645 goto finalise;
646 646
647 } 647 }
@@ -649,13 +649,13 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) {
649 // Initialize info structure 649 // Initialize info structure
650 info_ptr = png_create_info_struct(png_ptr); 650 info_ptr = png_create_info_struct(png_ptr);
651 if (info_ptr == nullptr) { 651 if (info_ptr == nullptr) {
652 LOG_ERROR(Debug_GPU, "Could not allocate info struct\n"); 652 LOG_ERROR(Debug_GPU, "Could not allocate info struct");
653 goto finalise; 653 goto finalise;
654 } 654 }
655 655
656 // Setup Exception handling 656 // Setup Exception handling
657 if (setjmp(png_jmpbuf(png_ptr))) { 657 if (setjmp(png_jmpbuf(png_ptr))) {
658 LOG_ERROR(Debug_GPU, "Error during png creation\n"); 658 LOG_ERROR(Debug_GPU, "Error during png creation");
659 goto finalise; 659 goto finalise;
660 } 660 }
661 661