Move gpu vendor detection to native with the rest of the gl init.

Also disable vertical layout for mainscreen entirely.
This commit is contained in:
Henrik Rydgard 2013-10-16 00:47:57 +02:00
parent bfea9bba4b
commit 80702109f5
8 changed files with 20 additions and 59 deletions

View file

@ -480,9 +480,8 @@ void MainScreen::CreateViews() {
// Scrolling action menu to the right.
using namespace UI;
bool vertical = dp_yres > dp_xres;
ILOG("Vertical? %c : %i %i", vertical ? 'Y' : 'N', dp_xres, dp_yres);
// Vertical mode is not finished.
bool vertical = false; // dp_yres > dp_xres;
I18NCategory *m = GetI18NCategory("MainMenu");