mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Added Traditional Chinese translations thanks to khiav.
Updated several of the other language translations thanks to the growing Dolphin translation team. Make it easier for translators to deal with a few strings in the code by not concatenating strings. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6922 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
+328
-314
File diff suppressed because it is too large
Load Diff
+811
-611
File diff suppressed because it is too large
Load Diff
+328
-314
File diff suppressed because it is too large
Load Diff
+641
-548
File diff suppressed because it is too large
Load Diff
+328
-314
File diff suppressed because it is too large
Load Diff
+369
-323
File diff suppressed because it is too large
Load Diff
+370
-324
File diff suppressed because it is too large
Load Diff
+332
-315
File diff suppressed because it is too large
Load Diff
+863
-619
File diff suppressed because it is too large
Load Diff
+371
-325
File diff suppressed because it is too large
Load Diff
+348
-317
File diff suppressed because it is too large
Load Diff
+367
-322
File diff suppressed because it is too large
Load Diff
+406
-412
File diff suppressed because it is too large
Load Diff
+366
-321
File diff suppressed because it is too large
Load Diff
+374
-328
File diff suppressed because it is too large
Load Diff
+366
-321
File diff suppressed because it is too large
Load Diff
+710
-563
File diff suppressed because it is too large
Load Diff
+376
-330
File diff suppressed because it is too large
Load Diff
+366
-321
File diff suppressed because it is too large
Load Diff
@@ -78,7 +78,7 @@ void CDolLoader::Initialize(u8* _pBuffer, u32 _Size)
|
||||
{
|
||||
text_section[i] = new u8[m_dolheader.textSize[i]];
|
||||
memcpy(text_section[i], _pBuffer + m_dolheader.textOffset[i], m_dolheader.textSize[i]);
|
||||
for (int j = 0; j < (m_dolheader.textSize[i]/sizeof(u32)); j++)
|
||||
for (unsigned int j = 0; j < (m_dolheader.textSize[i]/sizeof(u32)); j++)
|
||||
{
|
||||
u32 word = Common::swap32(((u32*)text_section[i])[j]);
|
||||
if ((word & HID4_mask) == HID4_pattern)
|
||||
@@ -121,4 +121,4 @@ void CDolLoader::Load()
|
||||
Memory::Write_U8(data_section[i][num], m_dolheader.dataAddress[i] + num);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user