mirror of https://github.com/PCSX2/pcsx2.git
Lilypad: Replace question mark with "N/A" on Diagonotics window when a device is not active.
This commit is contained in:
parent
9c222f8efe
commit
fc5dde464f
|
@ -65,7 +65,7 @@ INT_PTR CALLBACK DiagDialog(HWND hWnd, unsigned int uMsg, WPARAM wParam, LPARAM
|
|||
//ShowWindow(hWndList, 0);
|
||||
//LockWindowUpdate(hWndList);
|
||||
if (!dev->active) {
|
||||
item.pszText = L"?";
|
||||
item.pszText = L"N/A";
|
||||
for (i = 0; i < dev->numVirtualControls; i++) {
|
||||
item.iItem = i;
|
||||
ListView_SetItem(hWndList, &item);
|
||||
|
|
Loading…
Reference in New Issue