Stippi's commit accidently changed the initial screen size.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13457 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-07-05 18:38:12 +00:00
parent 0f8af9d8cb
commit 0bb8508592
1 changed files with 7 additions and 14 deletions

View File

@ -32,15 +32,15 @@
#include "Workspace.h"
#ifdef __HAIKU__
#define USE_ACCELERANT 1
# define USE_ACCELERANT 1
#else
#define USE_ACCELERANT 0
# define USE_ACCELERANT 0
#endif
#if USE_ACCELERANT
#include "AccelerantHWInterface.h"
# include "AccelerantHWInterface.h"
#else
#include "ViewHWInterface.h"
# include "ViewHWInterface.h"
#endif
#include "Desktop.h"
@ -48,9 +48,9 @@
//#define DEBUG_DESKTOP
#ifdef DEBUG_DESKTOP
#define STRACE(a) printf(a)
# define STRACE(a) printf(a)
#else
#define STRACE(a) /* nothing */
# define STRACE(a) /* nothing */
#endif
@ -136,17 +136,10 @@ Desktop::_AddGraphicsCard(HWInterface* interface)
// The interface is now owned by the screen
if (screen->Initialize() >= B_OK && fScreenList.AddItem((void*)screen)) {
// TODO: be careful of screen initialization - monitor may not support 640x480
#if __HAIKU__
screen->SetMode(1400, 1050, B_RGB32, 60.f);
#else
screen->SetMode(800, 600, B_RGB32, 60.f);
#endif
} else {
} else
delete screen;
}
}