File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1871,15 +1871,15 @@ void update_pop_consumption(
1871
1871
1872
1872
// subsistence gives free "level of consumption"
1873
1873
1874
- auto base_shift = 1 .f / 200 .f ;
1874
+ auto base_shift = ve::fp_vector{ 1 .f / 200 .f } ;
1875
1875
1876
1876
ve::fp_vector shift_life = ve::select (
1877
1877
satisfaction_life_money + qol_from_subsistence > 0 .9f ,
1878
1878
base_shift,
1879
1879
ve::select (
1880
1880
satisfaction_life_money + qol_from_subsistence < 0 .7f ,
1881
1881
-base_shift,
1882
- 0 .f
1882
+ ve::fp_vector{ 0 .f }
1883
1883
)
1884
1884
);
1885
1885
ve::fp_vector shift_everyday = ve::select (
@@ -1888,7 +1888,7 @@ void update_pop_consumption(
1888
1888
ve::select (
1889
1889
satisfaction_everyday_money < 0 .7f ,
1890
1890
-base_shift,
1891
- 0 .f
1891
+ ve::fp_vector{ 0 .f }
1892
1892
)
1893
1893
);
1894
1894
ve::fp_vector shift_luxury = ve::select (
@@ -1897,7 +1897,7 @@ void update_pop_consumption(
1897
1897
ve::select (
1898
1898
satisfaction_luxury_money < 0 .7f ,
1899
1899
-base_shift,
1900
- 0 .f
1900
+ ve::fp_vector{ 0 .f }
1901
1901
)
1902
1902
);
1903
1903
You can’t perform that action at this time.
0 commit comments