dfxvideo: don't use 2xsai by default when config file is missing

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@54655 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\weimingzhi_cp 2010-07-15 12:19:01 +00:00
parent ae63a0a24a
commit 67baa28487
3 changed files with 14 additions and 8 deletions

View File

@ -4,6 +4,8 @@ July 15, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>
* plugins/dfcdrom/cdrcfg-0.1df/main.c: Use /dev/cd? instead on /dev/acd? on
FreeBSD.
* plugins/dfcdrom/cdr.h: Likewise.
* plugins/dfxvideo/cfg.c: Don't use 2xSai when no config file exists.
* autogen.sh: Use autoreconf.
July 14, 2010 Wei Mingzhi <whistler_wmz@users.sf.net>

View File

@ -1,8 +1,12 @@
#!/bin/sh
# simple script to redo the autotooling
# Run this to generate all the initial makefiles, etc.
# Additional options go to configure.
cp /usr/share/libtool/config/ltmain.sh .
autoheader && aclocal && autoconf && automake --add-missing --copy
cp /usr/share/gettext/config.rpath .
cp /usr/share/glib-2.0/gettext/mkinstalldirs .
rm -r autom4te.cache
echo "Rebuilding ./configure with autoreconf..."
autoreconf -f -i
if [ $? -ne 0 ]; then
echo "autoreconf failed"
exit $?
fi
./configure --enable-maintainer-mode "$@"

View File

@ -227,7 +227,7 @@ void ReadConfig(void)
fFrameRate=200.0f;
dwCfgFixes=0;
iUseFixes=0;
iUseNoStretchBlt=1;
iUseNoStretchBlt=0;
iUseDither=0;
iShowFPS=0;
@ -278,7 +278,7 @@ void WriteConfig(void) {
fFrameRate=200.0f;
dwCfgFixes=0;
iUseFixes=0;
iUseNoStretchBlt=1;
iUseNoStretchBlt=0;
iUseDither=0;
iShowFPS=0;