mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2897c4ffab | ||
|
35c174984b | ||
|
da16edea8d |
@@ -15,8 +15,8 @@ android {
|
||||
}
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 29
|
||||
versionCode 11
|
||||
versionName "1.0.15"
|
||||
versionCode 12
|
||||
versionName "1.0.16"
|
||||
externalNativeBuild {
|
||||
ndkBuild {
|
||||
arguments "APP_PLATFORM=android-16"
|
||||
|
@@ -567,8 +567,7 @@ void StepLoadScreen(int steps, bool insertDelay)
|
||||
|
||||
void InitLoadingWindow()
|
||||
{
|
||||
// Only phones are slow enough for this to matter
|
||||
if (!thisMac.isTouchscreen)
|
||||
if (!thisMac.isTouchscreen && isPrefsLoaded)
|
||||
return;
|
||||
|
||||
if (isPrefsLoaded)
|
||||
@@ -781,6 +780,10 @@ void PreloadAATables()
|
||||
PortabilityLayer::RGBAColor::Create(0, 255, 255, 255),
|
||||
PortabilityLayer::RGBAColor::Create(0, 0, 255, 255),
|
||||
PortabilityLayer::RGBAColor::Create(204, 102, 51, 255),
|
||||
PortabilityLayer::RGBAColor::Create(102, 102, 102, 255),
|
||||
PortabilityLayer::RGBAColor::Create(51, 51, 102, 255),
|
||||
PortabilityLayer::RGBAColor::Create(255, 255, 51, 255),
|
||||
PortabilityLayer::RGBAColor::Create(0, 0, 0, 255),
|
||||
};
|
||||
|
||||
const size_t numPalettePreloads = sizeof(preloadColors) / sizeof(preloadColors[0]);
|
||||
@@ -814,7 +817,7 @@ void PreloadAATables()
|
||||
|
||||
if (!toneAlreadyQueued)
|
||||
{
|
||||
PreloadAATableSpec &spec = specs[i + numTonePreloads];
|
||||
PreloadAATableSpec &spec = specs[numPalettePreloads + numTonePreloads];
|
||||
numTonePreloads++;
|
||||
|
||||
spec.m_color = PortabilityLayer::RGBAColor::Create(tone, tone, tone, 255);
|
||||
|
@@ -266,7 +266,7 @@ Boolean OpenSavedGame (void)
|
||||
char savePath[sizeof(spec.m_name) + 1];
|
||||
size_t savePathLength = 0;
|
||||
|
||||
if (!fm->PromptOpenFile(spec.m_dir, ".sav", savePath, savePathLength, sizeof(spec.m_name), PSTR("Open Saved Game"), true, GetSavedGameDetailsAPI()))
|
||||
if (!fm->PromptOpenFile(spec.m_dir, ".sav", savePath, savePathLength, sizeof(spec.m_name), PSTR("Open Saved Game"), false, GetSavedGameDetailsAPI()))
|
||||
return false;
|
||||
|
||||
assert(savePathLength < sizeof(spec.m_name) - 1);
|
||||
|
@@ -2,8 +2,8 @@
|
||||
|
||||
#define GP_BUILD_VERSION_MAJOR 1
|
||||
#define GP_BUILD_VERSION_MINOR 0
|
||||
#define GP_BUILD_VERSION_UPDATE 15
|
||||
#define GP_BUILD_VERSION_UPDATE 16
|
||||
|
||||
#define GP_APPLICATION_VERSION_STRING "1.0.15"
|
||||
#define GP_APPLICATION_VERSION_STRING "1.0.16"
|
||||
#define GP_APPLICATION_COPYRIGHT_STRING "2019-2021 Eric Lasota"
|
||||
#define GP_APPLICATION_WEBSITE_STRING "https://github.com/elasota/Aerofoil"
|
||||
|
Reference in New Issue
Block a user