[Maintenance] [th04] Bullet pattern tuning: Actually specify angles in hex -.-

The kind of minor copy-pasting mistake that should have been caught by
a proper type system… which ReC98 can only simulate to an extent.

Part of P0110, funded by [Anonymous] and Blue Bolt.
This commit is contained in:
nmlgc 2020-08-18 21:28:34 +02:00
parent 2c7d86bc5b
commit 61c29ba738
1 changed files with 2 additions and 2 deletions

View File

@ -75,12 +75,12 @@ void near tune_for_lunatic(void)
case BP_SINGLE_AIMED:
tmpl.pattern = BP_SPREAD_AIMED;
tmpl.count = 3;
tmpl.delta.spread_angle = to_sp(0.375f);
tmpl.delta.spread_angle = 0x06;
break;
case BP_SINGLE:
tmpl.pattern = BP_SPREAD;
tmpl.count = 3;
tmpl.delta.spread_angle = to_sp(0.375f);
tmpl.delta.spread_angle = 0x06;
break;
case BP_STACK: