mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Add 24bits mode strings
hope it fix qemu svn path=/trunk/; revision=15489
This commit is contained in:
parent
53db168c0d
commit
4f7ea2284f
4 changed files with 8 additions and 3 deletions
|
@ -98,7 +98,7 @@ BEGIN
|
|||
IDS_COLOR_4BIT "16 Colors"
|
||||
IDS_COLOR_8BIT "256 Colors"
|
||||
IDS_COLOR_16BIT "High Color (16 Bit)"
|
||||
IDS_COLOR_32BIT "True Color (24 Bit)"
|
||||
IDS_COLOR_24BIT "True Color (24 Bit)"
|
||||
IDS_COLOR_32BIT "True Color (32 Bit)"
|
||||
IDS_PIXEL "%lux%lu Pixel"
|
||||
END
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
#define IDS_COLOR_4BIT 2904
|
||||
#define IDS_COLOR_8BIT 2908
|
||||
#define IDS_COLOR_16BIT 2916
|
||||
#define IDS_COLOR_24BIT 2924
|
||||
#define IDS_COLOR_32BIT 2932
|
||||
|
||||
#endif /* __CPL_DESK_RESOURCE_H__ */
|
||||
|
|
|
@ -62,14 +62,18 @@ UpdateDisplay(IN HWND hwndDlg)
|
|||
LoadString(hApplet, IDS_PIXEL, Pixel, sizeof(Pixel) / sizeof(TCHAR));
|
||||
_stprintf(Buffer, Pixel, CurrentDisplayDevice->CurrentSettings->dmPelsWidth, CurrentDisplayDevice->CurrentSettings->dmPelsHeight, Pixel);
|
||||
SendDlgItemMessage(hwndDlg, IDC_SETTINGS_RESOLUTION_TEXT, WM_SETTEXT, 0, (LPARAM)Buffer);
|
||||
|
||||
|
||||
|
||||
for (index = 0; index < CurrentDisplayDevice->ResolutionsCount; index++)
|
||||
{
|
||||
|
||||
if (CurrentDisplayDevice->Resolutions[index].dmPelsWidth == CurrentDisplayDevice->CurrentSettings->dmPelsWidth &&
|
||||
CurrentDisplayDevice->Resolutions[index].dmPelsHeight == CurrentDisplayDevice->CurrentSettings->dmPelsHeight)
|
||||
{
|
||||
SendDlgItemMessage(hwndDlg, IDC_SETTINGS_RESOLUTION, TBM_SETPOS, TRUE, index);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (LoadString(hApplet, (2900 + CurrentDisplayDevice->CurrentSettings->dmBitsPerPel), Buffer, sizeof(Buffer) / sizeof(TCHAR)))
|
||||
SendDlgItemMessage(hwndDlg, IDC_SETTINGS_BPP, CB_SELECTSTRING, -1, (LPARAM)Buffer);
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@ BEGIN
|
|||
IDS_COLOR_4BIT "16 färger"
|
||||
IDS_COLOR_8BIT "256 färger"
|
||||
IDS_COLOR_16BIT "65 536 färger (16 Bit)"
|
||||
IDS_COLOR_32BIT "16,7 miljoner färger (24 Bit)"
|
||||
IDS_COLOR_24BIT "16,7 miljoner färger (24 Bit)"
|
||||
IDS_COLOR_32BIT "16,7 miljoner färger (32 Bit)"
|
||||
IDS_PIXEL "%lux%lu Pixlar"
|
||||
END
|
||||
|
|
Loading…
Reference in a new issue