From 61639f7711f2ad9ce15934bf1d4b5816226f6068 Mon Sep 17 00:00:00 2001 From: flaeri Date: Tue, 6 Dec 2022 21:40:20 +0100 Subject: [PATCH] Core: Remove i3 trigger modern i3 models are no longer considered underpowered. --- checks/core.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/checks/core.py b/checks/core.py index 62dd7b7..92129cd 100644 --- a/checks/core.py +++ b/checks/core.py @@ -32,9 +32,6 @@ def checkCPU(lines): if (('APU' in cpu[0]) or ('Pentium' in cpu[0]) or ('Celeron' in cpu[0])): return [LEVEL_CRITICAL, "Insufficient Hardware", "Your system is below minimum specs for OBS to run and may be too underpowered to livestream. There are no recommended settings we can suggest, but try the Auto-Config Wizard in the Tools menu. You may need to upgrade or replace your computer for a better experience."] - elif ('i3' in cpu[0]): - return [LEVEL_INFO, "Insufficient Hardware", - "Your system is below minimum specs for OBS to run and is too underpowered to livestream using software encoding. Livestreams and recordings may run more smoothly if you are using a hardware encoder like QuickSync, NVENC or AMF (via Settings -> Output)."] def getOBSVersionLine(lines):