Changeset 290 for branches/branch-1-0/src/helpers/winh.c
- Timestamp:
- Sep 5, 2005, 8:20:43 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/winh.c
r276 r290 2914 2914 * 2915 2915 *@@added V0.9.0 [umoeller] 2916 *@@changed V1.0.4 (2005-09-02) [bvl]: Return 'Combined' fonts on DBCS systems to show DBCS characters properly @@fixes 655 2916 2917 */ 2917 2918 … … 2924 2925 { 2925 2926 if (doshIsWarp4()) 2926 strhncpy0(szFont, "9.WarpSans", sizeof(szFont)); 2927 if(nlsDBCS()) 2928 strhncpy0(szFont, "9.WarpSans Combined", sizeof(szFont)); 2929 else 2930 strhncpy0(szFont, "9.WarpSans", sizeof(szFont)); 2927 2931 else 2928 strhncpy0(szFont, "8.Helv", sizeof(szFont)); 2932 if(nlsDBCS()) 2933 strhncpy0(szFont, "8.Helv Combined", sizeof(szFont)); 2934 else 2935 strhncpy0(szFont, "8.Helv", sizeof(szFont)); 2929 2936 } 2930 2937 else … … 2949 2956 * 2950 2957 *@@added V0.9.0 [umoeller] 2958 *@@changed V1.0.4 (2005-09-02) [bvl]: Return 'Combined' fonts on DBCS systems to show DBCS characters properly @@fixes 655 2951 2959 */ 2952 2960 … … 2965 2973 { 2966 2974 if (doshIsWarp4()) 2967 strhncpy0(szFont, "9.WarpSans", sizeof(szFont)); 2975 if(nlsDBCS()) 2976 strhncpy0(szFont, "9.WarpSans Combined", sizeof(szFont)); 2977 else 2978 strhncpy0(szFont, "9.WarpSans", sizeof(szFont)); 2968 2979 else 2969 strhncpy0(szFont, "8.Helv", sizeof(szFont)); 2980 if(nlsDBCS()) 2981 strhncpy0(szFont, "8.Helv Combined", sizeof(szFont)); 2982 else 2983 strhncpy0(szFont, "8.Helv", sizeof(szFont)); 2970 2984 } 2971 2985 else
Note:
See TracChangeset
for help on using the changeset viewer.