Lilypad: Replace question mark with "N/A" on Diagonotics window when a device is not active.

This commit is contained in:
lightningterror 2019-04-04 03:05:06 +02:00
parent 9c222f8efe
commit fc5dde464f
1 changed files with 1 additions and 1 deletions

View File

@ -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);