summaryrefslogtreecommitdiff
path: root/src/core/loader/3dsx.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-10-09 22:13:54 +0100
committerGravatar Emmanuel Gil Peyrot2015-10-09 22:14:56 +0100
commit14af5919ba7c0888e264add68053e2a330fe2fd3 (patch)
treeb88320d106988ac5ac660e7a8d76f1a56ae2abeb /src/core/loader/3dsx.cpp
parentMerge pull request #1189 from archshift/game-list-toggle-window (diff)
downloadyuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.gz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.tar.xz
yuzu-14af5919ba7c0888e264add68053e2a330fe2fd3.zip
CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls.
The LOG_* function itself already appends one.
Diffstat (limited to 'src/core/loader/3dsx.cpp')
-rw-r--r--src/core/loader/3dsx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/3dsx.cpp b/src/core/loader/3dsx.cpp
index 111b6a409..8eed6a50a 100644
--- a/src/core/loader/3dsx.cpp
+++ b/src/core/loader/3dsx.cpp
@@ -181,14 +181,14 @@ static THREEDSX_Error Load3DSXFile(FileUtil::IOFile& file, u32 base_addr, Shared
181 181
182 for (unsigned current_inprogress = 0; current_inprogress < remaining && pos < end_pos; current_inprogress++) { 182 for (unsigned current_inprogress = 0; current_inprogress < remaining && pos < end_pos; current_inprogress++) {
183 const auto& table = reloc_table[current_inprogress]; 183 const auto& table = reloc_table[current_inprogress];
184 LOG_TRACE(Loader, "(t=%d,skip=%u,patch=%u)\n", current_segment_reloc_table, 184 LOG_TRACE(Loader, "(t=%d,skip=%u,patch=%u)", current_segment_reloc_table,
185 (u32)table.skip, (u32)table.patch); 185 (u32)table.skip, (u32)table.patch);
186 pos += table.skip; 186 pos += table.skip;
187 s32 num_patches = table.patch; 187 s32 num_patches = table.patch;
188 while (0 < num_patches && pos < end_pos) { 188 while (0 < num_patches && pos < end_pos) {
189 u32 in_addr = (u8*)pos - program_image.data(); 189 u32 in_addr = (u8*)pos - program_image.data();
190 u32 addr = TranslateAddr(*pos, &loadinfo, offsets); 190 u32 addr = TranslateAddr(*pos, &loadinfo, offsets);
191 LOG_TRACE(Loader, "Patching %08X <-- rel(%08X,%d) (%08X)\n", 191 LOG_TRACE(Loader, "Patching %08X <-- rel(%08X,%d) (%08X)",
192 base_addr + in_addr, addr, current_segment_reloc_table, *pos); 192 base_addr + in_addr, addr, current_segment_reloc_table, *pos);
193 switch (current_segment_reloc_table) { 193 switch (current_segment_reloc_table) {
194 case 0: 194 case 0: