* Add preliminary raspberry pi support.

Currently it appears to be using software acceleration, so sucks, but I'll be
working on it.
This commit is contained in:
iProgramInCpp
2023-08-08 14:00:35 +03:00
parent 0ab1aa0a51
commit 6036304087
5 changed files with 56 additions and 7 deletions

View File

@@ -143,16 +143,16 @@ static void calulate_gui_scale()
{
if (width < 400)
{
Gui::InvGuiScale = 1.0;
Gui::InvGuiScale = 1.0f;
}
else
{
Gui::InvGuiScale = 0.5;
Gui::InvGuiScale = 0.5f;
}
}
else
{
Gui::InvGuiScale = 0.25;
Gui::InvGuiScale = 0.25f;
}
}