Skip to content

Commit

Permalink
Do not mention all needed CPU instructions to the player
Browse files Browse the repository at this point in the history
as we already got one person who was confused with what they were actually missing
  • Loading branch information
hhyyrylainen committed Feb 24, 2024
1 parent 6098ed5 commit 7bd8253
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/engine/StartupActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ private StartupActions()
{
if (!NativeInterop.CheckCPU())
{
GD.Print("Thrive requires a new enough CPU to have SSE4.1, SSE4.2, and AVX (1)");
// Thrive needs SSE4.1, SSE4.2, and AVX (1) currently, this is not told to the player to avoid
// confusion with what they are missing
GD.Print("Thrive requires a new enough CPU to have various extension instruction sets, " +
"see above for what is detected as missing");
GD.PrintErr("Detected CPU features are insufficient for running Thrive, a newer CPU with " +
"required instruction set extensions is required");

Expand Down

0 comments on commit 7bd8253

Please sign in to comment.