This website works better with JavaScript.
Home
Explore
Help
Sign In
mh
/
mhsw-espurna
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix rpnSticky inverse condition (
#2135
)
mcspr-patch-1
Max Prokhorov
4 years ago
committed by
GitHub
parent
f7f41980b6
commit
cda3dab0a1
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
code/espurna/rpnrules.ino
+ 1
- 1
code/espurna/rpnrules.ino
View File
@ -322,7 +322,7 @@ void _rpnRun() {
rpn_stack_clear
(
_rpn_ctxt
)
;
}
if
(
getSetting
(
"
rpnSticky
"
,
1
=
=
RPN_STICKY
)
)
{
if
(
!
getSetting
(
"
rpnSticky
"
,
1
=
=
RPN_STICKY
)
)
{
rpn_variables_clear
(
_rpn_ctxt
)
;
}
Write
Preview
Loading…
Cancel
Save