release v0.6.3
This commit is contained in:
parent
0f0cccc2b6
commit
f28dcec683
20 changed files with 76 additions and 51 deletions
|
|
@ -117,12 +117,22 @@ enum FurnaceGUIRenderBackend {
|
|||
#define GUI_HEIGHT_DEFAULT 600
|
||||
#define GUI_MAIN_FONT_DEFAULT 3
|
||||
#define GUI_PAT_FONT_DEFAULT 3
|
||||
#define GUI_FONT_SIZE_DEFAULT 13
|
||||
#define GUI_ICON_SIZE_DEFAULT 12
|
||||
#define GUI_OVERSAMPLE_DEFAULT 1
|
||||
#define GUI_FONT_ANTIALIAS_DEFAULT 0
|
||||
#define GUI_FONT_HINTING_DEFAULT 1
|
||||
#define GUI_DECORATIONS_DEFAULT 0
|
||||
#else
|
||||
#define GUI_WIDTH_DEFAULT 1280
|
||||
#define GUI_HEIGHT_DEFAULT 800
|
||||
#define GUI_MAIN_FONT_DEFAULT 0
|
||||
#define GUI_PAT_FONT_DEFAULT 0
|
||||
#define GUI_FONT_SIZE_DEFAULT 18
|
||||
#define GUI_ICON_SIZE_DEFAULT 16
|
||||
#define GUI_OVERSAMPLE_DEFAULT 2
|
||||
#define GUI_FONT_ANTIALIAS_DEFAULT 1
|
||||
#define GUI_FONT_HINTING_DEFAULT 0
|
||||
#define GUI_DECORATIONS_DEFAULT 1
|
||||
#endif
|
||||
|
||||
|
|
@ -1905,10 +1915,10 @@ class FurnaceGUI {
|
|||
|
||||
Settings():
|
||||
settingsChanged(false),
|
||||
mainFontSize(18),
|
||||
patFontSize(18),
|
||||
mainFontSize(GUI_FONT_SIZE_DEFAULT),
|
||||
patFontSize(GUI_FONT_SIZE_DEFAULT),
|
||||
headFontSize(27),
|
||||
iconSize(16),
|
||||
iconSize(GUI_ICON_SIZE_DEFAULT),
|
||||
audioEngine(DIV_AUDIO_SDL),
|
||||
audioQuality(0),
|
||||
audioHiPass(1),
|
||||
|
|
@ -2115,7 +2125,7 @@ class FurnaceGUI {
|
|||
fontBitmap(0),
|
||||
fontAutoHint(1),
|
||||
fontAntiAlias(1),
|
||||
fontOversample(2),
|
||||
fontOversample(GUI_OVERSAMPLE_DEFAULT),
|
||||
selectAssetOnLoad(1),
|
||||
basicColors(1),
|
||||
playbackTime(1),
|
||||
|
|
@ -2150,7 +2160,11 @@ class FurnaceGUI {
|
|||
bool introPlayed;
|
||||
bool protoWelcome;
|
||||
Tutorial():
|
||||
#ifdef SUPPORT_XP
|
||||
introPlayed(true),
|
||||
#else
|
||||
introPlayed(false),
|
||||
#endif
|
||||
protoWelcome(false) {
|
||||
}
|
||||
} tutorial;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue