From b680a4d0f9a62b564acc8400a6098730c2009308 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 20 Mar 2009 01:34:44 +0000 Subject: [PATCH] Win32 - made high quality sound and windowed mode video - disable hardware acceleration default settings. --- changelog.txt | 1 + src/drivers/win/main.cpp | 2 +- src/drivers/win/video.cpp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 1a7377fc..58983816 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,5 @@ ---version 2.0.4 yet to be released--- +19-mar-2009 - adelikat - Win32 - make Video - windowed mode - disable hardware accel the default setting. Made high quality sound the default setting. 16-mar-2009 - adelikat - Win32 - GUI Dialog - added an option to disable the context menu 15-mar-2009 - adelikat - Lua - added movie.rerecordcount(), movie.length(), movie.getname(), movie.playbeginning(), FCEU.getreadonly(), FCEU.setreadonly() 14-mar-2009 - adelikat - Lua - added movie.active() - returns a bool value based on whether a movie is currently loaded diff --git a/src/drivers/win/main.cpp b/src/drivers/win/main.cpp index 04e3c27e..b438c851 100644 --- a/src/drivers/win/main.cpp +++ b/src/drivers/win/main.cpp @@ -120,7 +120,7 @@ int eoptions = EO_BGRUN | EO_FORCEISCALE; int soundoptions = SO_SECONDARY | SO_GFOCUS; int soundrate = 44100; int soundbuftime = 50; -int soundquality = 0; +int soundquality = 1; //Sound volume controls (range 0-150 by 10's)j----- int soundvolume = 150; //Master sound volume diff --git a/src/drivers/win/video.cpp b/src/drivers/win/video.cpp index 5faa65d0..b5795232 100644 --- a/src/drivers/win/video.cpp +++ b/src/drivers/win/video.cpp @@ -36,7 +36,7 @@ static int bpp; static int vflags; static int veflags; -int disvaccel = 0; //Disable video hardware acceleration. +int disvaccel = 1; //Disable video hardware acceleration. 1 by default (meaning disable in windowed but not Fullscreen) int fssync=0; int winsync=0;