Win32 - made high quality sound and windowed mode video - disable hardware acceleration default settings.
This commit is contained in:
parent
b0c15d53e2
commit
b680a4d0f9
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue