1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Fix resources for Zilmar build for Windows.

This commit is contained in:
Sergey Lipskiy 2014-10-15 11:26:01 +07:00
parent 0d2b762198
commit 0200cd7db1
2 changed files with 6 additions and 6 deletions

View File

@ -54,7 +54,7 @@ END
IDD_DEBUGDLG DIALOGEX 0, 0, 489, 238
STYLE DS_SETFONT | WS_VISIBLE | WS_CAPTION
EXSTYLE WS_EX_TOOLWINDOW
CAPTION "glN64 Debug Output"
CAPTION "GLideN64 Debug Output"
FONT 8, "MS Sans Serif", 0, 0, 0x1
BEGIN
GROUPBOX "Debug Level",IDC_STATIC,4,161,304,28
@ -92,7 +92,7 @@ END
IDD_CONFIGDLG DIALOGEX 0, 0, 247, 201
STYLE DS_ABSALIGN | DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CAPTION
CAPTION "glN64 Configuration"
CAPTION "GLideN64 Configuration"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
LTEXT "Full Screen Mode:",IDC_STATIC,15,33,58,8
@ -123,14 +123,14 @@ END
IDD_MICROCODEDLG DIALOGEX 0, 0, 384, 129
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "glN64 Unknown Microcode"
CAPTION "GLideN64 Unknown Microcode"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "OK",IDOK,136,108,50,14
PUSHBUTTON "Stop",IDCANCEL,198,108,50,14
COMBOBOX IDC_MICROCODE,168,86,87,80,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP
LTEXT "Microcode:",IDC_STATIC,129,88,36,8
LTEXT "Unknown microcode detected. Please notify Orkin, including the following information:",IDC_STATIC,53,7,278,8
LTEXT "Unknown microcode detected:",IDC_STATIC,53,7,278,8
LTEXT "You can manually select the closest matching microcode, or stop the video thread",IDC_STATIC,62,73,261,8
EDITTEXT IDC_TEXTBOX,7,20,370,31,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY
END

View File

@ -62,7 +62,7 @@ void Config_LoadConfig()
HKEY hKey;
RegOpenKeyEx( HKEY_CURRENT_USER, "Software\\N64 Emulation\\DLL\\glN64", 0, KEY_READ, &hKey );
RegOpenKeyEx( HKEY_CURRENT_USER, "Software\\N64 Emulation\\DLL\\GLideN64", 0, KEY_READ, &hKey );
if (hKey)
{
@ -127,7 +127,7 @@ void Config_SaveConfig()
DWORD value;
HKEY hKey;
RegCreateKeyEx( HKEY_CURRENT_USER, "Software\\N64 Emulation\\DLL\\glN64", 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, NULL );
RegCreateKeyEx( HKEY_CURRENT_USER, "Software\\N64 Emulation\\DLL\\GLideN64", 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hKey, NULL );
RegSetValueEx( hKey, "Fullscreen Bit Depth", 0, REG_DWORD, (BYTE*)&config.video.fullscreenBits, 4 );
RegSetValueEx( hKey, "Fullscreen Width", 0, REG_DWORD, (BYTE*)&config.video.fullscreenWidth, 4 );