summaryrefslogtreecommitdiffstats
path: root/src/video_core/debug_utils/debug_utils.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-10-09 23:13:54 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-10-09 23:14:56 +0200
commit14af5919ba7c0888e264add68053e2a330fe2fd3 (patch)
treeb88320d106988ac5ac660e7a8d76f1a56ae2abeb /src/video_core/debug_utils/debug_utils.cpp
parentMerge pull request #1189 from archshift/game-list-toggle-window (diff)
downloadyuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.gz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.bz2
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.lz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.xz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.zst
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.zip
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.cpp')
-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) {
// Initialize write structure
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
if (png_ptr == nullptr) {
- LOG_ERROR(Debug_GPU, "Could not allocate write struct\n");
+ LOG_ERROR(Debug_GPU, "Could not allocate write struct");
goto finalise;
}
@@ -649,13 +649,13 @@ void DumpTexture(const Pica::Regs::TextureConfig& texture_config, u8* data) {
// Initialize info structure
info_ptr = png_create_info_struct(png_ptr);
if (info_ptr == nullptr) {
- LOG_ERROR(Debug_GPU, "Could not allocate info struct\n");
+ LOG_ERROR(Debug_GPU, "Could not allocate info struct");
goto finalise;
}
// Setup Exception handling
if (setjmp(png_jmpbuf(png_ptr))) {
- LOG_ERROR(Debug_GPU, "Error during png creation\n");
+ LOG_ERROR(Debug_GPU, "Error during png creation");
goto finalise;
}