Skip to content

Commit 28a8ffd

Browse files
committed
Build 31 - fix local saving when not logged in
1 parent c204ebe commit 28a8ffd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

includes/defines.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#define MOD_VERSION 26
3333
#define MOD_MINOR_VERSION 4
3434
#define MOD_SAVE_VERSION 17 //This is not the version number of my mod anymore, it's only changed when I change the saving code
35-
#define MOD_BUILD_VERSION 30 //For update checks
35+
#define MOD_BUILD_VERSION 31 //For update checks
3636
#define BETA_VERSION 89
3737
#define BETA_MINOR_VER 1
3838
#define RELEASE_VERSION 89

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2703,13 +2703,13 @@ int main(int argc, char *argv[])
27032703
memset(fire_b, 0, sizeof(fire_b));
27042704
}
27052705
}
2706-
else if (x >= 37 && x <= 187 && svf_login)
2706+
else if (x >= 37 && x <= 187)
27072707
{
27082708
if (sdl_mod & (KMOD_LCTRL|KMOD_RCTRL))
27092709
{
27102710
save_filename_ui(vid_buf);
27112711
}
2712-
else
2712+
else if (svf_login)
27132713
{
27142714
if (!svf_open || !svf_own || x>51)
27152715
{

0 commit comments

Comments
 (0)