(bool createdNew)
| 47 | } |
| 48 | |
| 49 | private static int RunApplication(bool createdNew) |
| 50 | { |
| 51 | if (!createdNew) |
| 52 | { |
| 53 | Native.SetFocusToPreviousInstance(); |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | if (!Environment.Is64BitOperatingSystem) |
| 58 | { |
| 59 | MessageBox.Show("32-BIT CLIENT DEPRECATION\n\nStarting with LoL patch 13.8, 32-bit Windows is no longer supported. Please upgrade your Windows to 64-bit.", |
| 60 | Name, MessageBoxButton.OK, MessageBoxImage.Warning); |
| 61 | return 1; |
| 62 | } |
| 63 | |
| 64 | App.Main(); |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | private static int HandleInstall(bool createdNew, bool active) |
| 69 | { |
nothing calls this directly
no test coverage detected