File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1360,7 +1360,7 @@ execConst c vs s k = do
1360
1360
[VBool b] -> return $ Out (VBool (not b)) s k
1361
1361
_ -> badConst
1362
1362
Neg -> case vs of
1363
- [VInt n] -> return $ Out (VInt (- n)) s k
1363
+ [VInt n] -> return $ Out (VInt (- n)) s k
1364
1364
_ -> badConst
1365
1365
Eq -> returnEvalCmp
1366
1366
Neq -> returnEvalCmp
Original file line number Diff line number Diff line change @@ -225,8 +225,8 @@ setFocus s name = continue $ s & uiState . uiFocusRing %~ focusSetCurrent name
225
225
-- | Set the game to Running if it was auto paused
226
226
maybeUnpause :: AppState -> AppState -> AppState
227
227
maybeUnpause s
228
- | s ^. gameState . runStatus == AutoPause = gameState . runStatus .~ Running
229
- | otherwise = id
228
+ | s ^. gameState . runStatus == AutoPause = gameState . runStatus .~ Running
229
+ | otherwise = id
230
230
231
231
toggleModal :: AppState -> ModalType -> EventM Name AppState
232
232
toggleModal s mt = do
You can’t perform that action at this time.
0 commit comments