Skip to content

Commit d6cc9e9

Browse files
committed
Version 26.4 (also Linux / cross compiling fixes)
1 parent 443c8d9 commit d6cc9e9

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

build/readme.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -645,6 +645,14 @@ Version 26.3 1/16/14
645645
Fix steamline drawing and floodfill crash. Fix glitch where ARAY didn't spark
646646
INST. Possible element search crash fix. Fix STKM(AIR) blowing ability.
647647

648+
Version 26.4 2/3/14
649+
Rewrites / fixes to Tool, box, and ellipse brush drawing. Fix possible crash
650+
when shifting stamps, and make ctrl key not needed. Lots of crash fixes for
651+
some lua functions. Fix STKM2 spawning with really high life (probably). New
652+
bug icon. PROP remembers what property you set last. Fix things coming out
653+
the wrong side of portals. Fix some bugs with clicking after exiting out of
654+
certain interfaces.
655+
648656

649657

650658

includes/defines.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
//VersionInfoEnd
3131

3232
#define MOD_VERSION 26
33-
#define MOD_MINOR_VERSION 3
33+
#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 29 //For update checks
35+
#define MOD_BUILD_VERSION 30 //For update checks
3636
#define BETA_VERSION 89
3737
#define BETA_MINOR_VER 1
3838
#define RELEASE_VERSION 89

src/interface.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1761,6 +1761,8 @@ void prop_edit_ui(pixel *vid_buf)
17611761
int x0=(XRES-xsize)/2,y0=(YRES-MENUSIZE-ysize)/2,b=1,bq,mx,my;
17621762
ui_list ed;
17631763
ui_edit ed2;
1764+
PropTool* propTool = (PropTool*)GetToolFromIdentifier("DEFAULT_TOOL_PROP");
1765+
bool name = false;
17641766

17651767
ed.x = x0+8;
17661768
ed.y = y0+25;
@@ -1836,7 +1838,6 @@ void prop_edit_ui(pixel *vid_buf)
18361838
}
18371839
}
18381840

1839-
bool name = false;
18401841
if(ed.selected != -1)
18411842
{
18421843
if (!strcmp(ed.str, "type")) {
@@ -1882,7 +1883,6 @@ void prop_edit_ui(pixel *vid_buf)
18821883
goto exit;
18831884
}
18841885

1885-
PropTool* propTool = (PropTool*)GetToolFromIdentifier("DEFAULT_TOOL_PROP");
18861886
propTool->propOffset = propoffset;
18871887
if (format == 0)
18881888
{

src/simulation/Simulation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* This program is free software; you can redistribute it and/or modify
33
* it under the terms of the GNU General Public License as published by
44
* the Free Software Foundation; either version 3 of the License, or

0 commit comments

Comments
 (0)