change default to use pc fonts. I mean, why wouldn't you want them?

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@592 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
ghaushe
2003-01-29 03:54:05 +00:00
parent a40f9a695b
commit b934c5749d
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -112,15 +112,15 @@ Default.
--font pc
Use PC style fonts and colors.
Default.
--font 3do
Use 3DO style fonts and colors.
Default
--scroll pc
Scroll voice-over/subtitles 1 page at a time when using left/right arrow keys
Default
Default.
--scroll 3do
Scroll voice-over/subtitles smoothly while holding down left/right arrow keys
+1 -1
View File
@@ -31,7 +31,7 @@
int optWhichMusic = OPT_3DO;
int optWhichCoarseScan = OPT_3DO;
int optWhichMenu = OPT_3DO;
int optWhichFonts = OPT_3DO;
int optWhichFonts = OPT_PC;
int optSmoothScroll = OPT_PC;
char *configDir, *saveDir, *meleeDir;
+1 -1
View File
@@ -260,7 +260,7 @@ main (int argc, char *argv[])
printf(" -m, --music : Music version (default 3do)\n");
printf(" --cscan : coarse-scan display, pc=text, 3do=hieroglyphs (default 3do)\n");
printf(" --menu : menu type, pc=text, 3do=graphical (default 3do)\n");
printf(" --font : font types and colors (default 3do)\n");
printf(" --font : font types and colors (default pc)\n");
printf(" --scroll : ff/frev during comm. pc=per-page, 3do=smooth (default pc)\n");
return 0;
break;