Skip to content

Commit 3c426e0

Browse files
committed
Fix analyzer
1 parent eecbb9b commit 3c426e0

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

filters/perkeo_analyzer.cl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ __constant int vagabondPerAnte[] = {104, 6, 6, 4, 2, 1, 0, 0};
2727
__constant int superpositionPerAnte[] = {0, 3, 2, 1, 0, 0, 0, 0};
2828

2929
__constant int purpleSealPerAnte[] = {0, 2, 3, 4, 5, 5, 5, 5};
30-
__constant int blueSealPerAnte[] = {0, 0, 0, 0, 0, 0, 0, 0};
30+
__constant int _8BallPerAnte[] = {2, 2, 2, 2, 2, 2, 2, 2};
3131

3232
__constant int emperorPerAnte[] = {2, 2, 2, 2, 2, 2, 2, 2};
3333
__constant int priestessPerAnte[] = {2, 2, 2, 2, 2, 2, 2, 2};
@@ -58,7 +58,7 @@ long filter(instance* inst) {
5858
print_tarots(inst, S_Superposition, ante, superpositionPerAnte[ante-1]);
5959

6060
print_tarots(inst, S_Purple_Seal, ante, purpleSealPerAnte[ante-1]);
61-
print_planets(inst, S_Blue_Seal, ante, blueSealPerAnte[ante-1]);
61+
print_tarots(inst, S_8_Ball, ante, _8BallPerAnte[ante-1]);
6262

6363
print_tarots(inst, S_Emperor, ante, emperorPerAnte[ante-1]);
6464
print_planets(inst, S_High_Priestess, ante, priestessPerAnte[ante-1]);

immolate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
int main(int argc, char **argv) {
33

44
// Print version
5-
printf_s("Immolate Beta v1.0.1f.0\n");
5+
printf_s("Immolate Beta v1.0.1f.1\n");
66

77
// Handle CLI arguments
88
unsigned int platformID = 0;

lib/items.cl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -548,11 +548,6 @@ typedef enum ShopItemType {
548548
ItemType_Spectral
549549
} itemtype;
550550

551-
typedef struct ShopItem {
552-
itemtype type;
553-
item value;
554-
} shopitem;
555-
556551
typedef struct ShopInstance {
557552
double jokerRate;
558553
double tarotRate;
@@ -582,6 +577,12 @@ typedef struct JokerData {
582577
jokerstickers stickers;
583578
} jokerdata;
584579

580+
typedef struct ShopItem {
581+
itemtype type;
582+
item value;
583+
jokerdata joker;
584+
} shopitem;
585+
585586
typedef struct WeightedItem {
586587
item _item;
587588
double weight;

0 commit comments

Comments
 (0)