Fixes to default key mappings, add default button, fix saving of mapped controls on Android, fixes #3213

This commit is contained in:
Henrik Rydgard
2013-08-18 00:41:19 +02:00
parent 96572a3226
commit 47f2efb0e5
10 changed files with 78 additions and 16 deletions
+9 -5
View File
@@ -17,11 +17,6 @@
#include "Common/CommonWindows.h"
void LaunchBrowser(const char *url)
{
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
}
#include "file/vfs.h"
#include "file/zip_read.h"
@@ -54,6 +49,15 @@ void LaunchBrowser(const char *url)
CDisasm *disasmWindow[MAX_CPUCOUNT] = {0};
CMemoryDlg *memoryWindow[MAX_CPUCOUNT] = {0};
void LaunchBrowser(const char *url)
{
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
}
std::string System_GetName() {
return "PC:Windows";
}
int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLine, int iCmdShow)
{
Common::EnableCrashingOnCrashes();