Skip to content

Commit 4fc1ef5

Browse files
fix
1 parent 0b19fd5 commit 4fc1ef5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/economy/economy.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1873,7 +1873,7 @@ void update_pop_consumption(
18731873

18741874
auto base_shift = 1.f / 200.f;
18751875

1876-
auto shift_life = ve::select(
1876+
ve::fp_vector shift_life = ve::select(
18771877
satisfaction_life_money + qol_from_subsistence > 0.9f,
18781878
base_shift,
18791879
ve::select(
@@ -1882,7 +1882,7 @@ void update_pop_consumption(
18821882
0.f
18831883
)
18841884
);
1885-
auto shift_everyday = ve::select(
1885+
ve::fp_vector shift_everyday = ve::select(
18861886
satisfaction_everyday_money > 0.9f,
18871887
base_shift,
18881888
ve::select(
@@ -1891,7 +1891,7 @@ void update_pop_consumption(
18911891
0.f
18921892
)
18931893
);
1894-
auto shift_luxury = ve::select(
1894+
ve::fp_vector shift_luxury = ve::select(
18951895
satisfaction_luxury_money > 0.9f,
18961896
base_shift,
18971897
ve::select(

0 commit comments

Comments
 (0)