move translations to their own repository (and also fix galaga driver building in VC++)

This commit is contained in:
tmaul 2019-05-19 23:14:48 +01:00
parent 65423c3f0d
commit 1fb091490f
14 changed files with 4 additions and 27527 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1 +0,0 @@
3:Chinese (Simplified)^4:Chinese (Traditional)^1:French^11:German^5:Hungarian^10:Italian^6:Japanese^2:Korean^7:Portuguese^8:Russian^9:Spanish

View File

@ -40,8 +40,8 @@ struct CPU_Memory_Map_Def
struct CPU_Config_Def
{
UINT32 id;
UINT8 __fastcall (*z80ProgRead)(UINT16 addr);
void __fastcall (*z80ProgWrite)(UINT16 addr, UINT8 dta);
UINT8 (__fastcall *z80ProgRead)(UINT16 addr);
void (__fastcall *z80ProgWrite)(UINT16 addr, UINT8 dta);
void (*z80MemMap)(void);
};

View File

@ -27,7 +27,7 @@ static INT32 LocaliseDownloadInit()
return 1;
}
HINTERNET OpenAddress = InternetOpenUrl(connect, _T("https://www.fbalpha.com/localisationinfo/"), NULL, 0, INTERNET_FLAG_PRAGMA_NOCACHE | INTERNET_FLAG_KEEP_CONNECTION, 0);
HINTERNET OpenAddress = InternetOpenUrl(connect, _T("https://finalburnneo.github.io/FBNeo-translations/localisationinfo/"), NULL, 0, INTERNET_FLAG_PRAGMA_NOCACHE | INTERNET_FLAG_KEEP_CONNECTION, 0);
if (!OpenAddress) {
MessageBox(hLocalDownDlg, FBALoadStringEx(hAppInst, IDS_ERR_LOCAL_FAIL_OPEN_URL, true), FBALoadStringEx(hAppInst, IDS_ERR_ERROR, true), MB_OK);
InternetCloseHandle(connect);
@ -103,7 +103,7 @@ static int LocaliseDownloadOkay()
}
TCHAR url[256];
_sntprintf(url, 256, _T("https://www.fbalpha.com/localisation/downloadtemplates/%i/"), langCodes[nIndex]);
_sntprintf(url, 256, _T("https://finalburnneo.github.io/FBNeo-translations/localisationinfo/%i/"), langCodes[nIndex]);
HINTERNET OpenAddress = InternetOpenUrl(connect, url, NULL, 0, INTERNET_FLAG_PRAGMA_NOCACHE | INTERNET_FLAG_KEEP_CONNECTION, 0);
if (!OpenAddress) {