mirror of
https://github.com/libretro/FBNeo.git
synced 2024-12-13 20:52:26 +00:00
move translations to their own repository (and also fix galaga driver building in VC++)
This commit is contained in:
parent
65423c3f0d
commit
1fb091490f
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
@ -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
|
@ -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);
|
||||
};
|
||||
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user