From a3427ec7327329d5601e47047c4a664f1e1054ca Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 15 Aug 2010 11:13:21 +0200 Subject: [PATCH] :3 --- config.h | 6 +++--- config.mk | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config.h b/config.h index 110c65a73d..2b6057376c 100644 --- a/config.h +++ b/config.h @@ -39,7 +39,7 @@ // Chooses which video and audio subsystem to use. Remember to update config.mk if you change these. #define VIDEO_DRIVER VIDEO_GL -#define AUDIO_DRIVER AUDIO_RSOUND +#define AUDIO_DRIVER AUDIO_ALSA //////////////// @@ -52,8 +52,8 @@ static const float yscale = 4.0; // Real y res = 224 * yscale // Fullscreen static bool fullscreen = false; // To start in Fullscreen or not -static const unsigned fullscreen_x = 1920; -static const unsigned fullscreen_y = 1200; +static const unsigned fullscreen_x = 1280; +static const unsigned fullscreen_y = 720; // Video VSYNC (recommended) static const bool vsync = true; diff --git a/config.mk b/config.mk index d11f1f604d..04fb973188 100644 --- a/config.mk +++ b/config.mk @@ -2,10 +2,10 @@ BUILD_OPENGL = 1 BUILD_FILTER = 0 -BUILD_RSOUND = 1 +BUILD_RSOUND = 0 BUILD_OSS = 0 -BUILD_ALSA = 0 +BUILD_ALSA = 1 -PREFIX = /usr +PREFIX = /usr/local