diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/graphics.cpp | 2 | ||||
-rw-r--r-- | src/gui/gui.cpp | 30 | ||||
-rw-r--r-- | src/main.cpp | 3 |
3 files changed, 17 insertions, 18 deletions
diff --git a/src/graphics.cpp b/src/graphics.cpp index 0ebacc08..37e37a79 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -36,7 +36,7 @@ Graphics::Graphics(): if (useOpenGL) { // Setup OpenGL glViewport(0, 0, 800, 600); - glClearColor(0.0f, 0.0f, 0.0f, 0.0f); + glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_FASTEST); int gotDoubleBuffer; SDL_GL_GetAttribute(SDL_GL_DOUBLEBUFFER, &gotDoubleBuffer); logger->log("Using OpenGL %s double buffering.", diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index f38bb1b4..0ed123e3 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -82,26 +82,26 @@ Gui::Gui(Graphics *graphics) // Set global font try { guiFont = new gcn::ImageFont( - TMW_DATADIR "data/graphics/gui/fixedfont.png", - " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567" - "89:@!\"$%&/=?^+*#[]{}()<>_;'.,\\|-~`ψε" + TMW_DATADIR "data/graphics/gui/sansserif8.png", + " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[" + "\\]^_`abcdefghijklmnopqrstuvwxyz{|}~|" ); } catch (gcn::Exception e) { - try { - guiFont = new gcn::ImageFont( - "data/graphics/gui/fixedfont.png", - " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567" - "89:@!\"$%&/=?^+*#[]{}()<>_;'.,\\|-~`ψε" - ); - } - catch (gcn::Exception e) - { - logger->error("Unable to load fixedfont.png!"); - } + try { + guiFont = new gcn::ImageFont( + "data/graphics/gui/sansserif8.png", + " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVW" + "XYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~|" + ); + } + catch (gcn::Exception e) + { + logger->error("Unable to load sansserif8.png!"); + } } - + gcn::Widget::setGlobalFont(guiFont); // Load hits' colourful fonts diff --git a/src/main.cpp b/src/main.cpp index 1704b409..14191c0a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -227,11 +227,10 @@ void init_engine() screenW = (int)config.getValue("screenwidth", 800); screenH = (int)config.getValue("screenheight", 600); - bitDepth = (int)config.getValue("colordepth", 16); SDL_WM_SetIcon(IMG_Load(TMW_DATADIR "data/icons/tmw-icon.png"), NULL); - screen = SDL_SetVideoMode(screenW, screenH, bitDepth, displayFlags); + screen = SDL_SetVideoMode(screenW, screenH, 0, displayFlags); if (screen == NULL) { std::cerr << "Couldn't set " << screenW << "x" << screenH << "x" << bitDepth << " video mode: " << SDL_GetError() << std::endl; |