Skip to content

Commit

Permalink
Исправлена (отключена) инверсия спринта
Browse files Browse the repository at this point in the history
invert_run_button отвечает за флаг, который может инвертировать спринт игрока (делая его включённым по умолчанию, а удержание кнопки Y отключает его).
На данный момент это не нужно, поэтому заменил флаг на другой, не используемый в игре (по крайней мере, я на это надеюсь).
  • Loading branch information
MAGNAT2645 committed May 30, 2021
1 parent 9e9a095 commit 8232fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ccscript/run_button_toggleable.ccs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import asm65816
// Unlike the standard run button patch, this one does not affect the skip sandwich
// status in memory. Useful if you want skip sandwiches to do something else.

define invert_run_button = flag 0x123 // Replace this flag with the one you want
define invert_run_button = flag 1024 // Replace this flag with the one you want

// New function, sets accumulator to 0 if run, 1 if not.
InRunMode: {
Expand Down

0 comments on commit 8232fd4

Please sign in to comment.