Window_Base.prototype.standardFontFace = function() {
if ($gameSystem.isChinese()) {
// return 'SimHei, Heiti TC, sans-serif'
return 'STXihei, SimHei, Microsoft Yahei, Microsoft JhengHei'
} else if ($gameSystem.isKorean()) {
return 'Dotum, AppleGothic, sans-serif'
} else {
return 'GameFont'
}
};
Window_Base.prototype.standardFontFace = function() {
if ($gameSystem.isChinese()) {
// return 'SimHei, Heiti TC, sans-serif'
return 'STXihei, SimHei, Microsoft Yahei, Microsoft JhengHei'
} else if ($gameSystem.isKorean()) {
return 'Dotum, AppleGothic, sans-serif'
} else {
return 'GameFont'
}
};