Lilypad: Remove Vista mention from config error popup.

This commit is contained in:
lightningterror 2020-08-27 13:37:55 +02:00
parent 13ff9ab7db
commit 9aab6ae7fa
1 changed files with 1 additions and 1 deletions

View File

@ -947,7 +947,7 @@ int SaveSettings(wchar_t *file = 0)
}
}
if (!noError) {
MessageBoxA(hWndProp, "Unable to save settings. Make sure the disk is not full or write protected, the file isn't write protected, and that the app has permissions to write to the directory. On Vista, try running in administrator mode.", "Error Writing Configuration File", MB_OK | MB_ICONERROR);
MessageBoxA(hWndProp, "Unable to save settings. Make sure the disk is not full or write protected, the file isn't write protected, and that the app has permissions to write to the directory. Try running in administrator mode.", "Error Writing Configuration File", MB_OK | MB_ICONERROR);
}
return !noError;
}