X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/micropolis/blobdiff_plain/d4ac0f6db5d0624714fb618bee4b0e604800ddd9..e555720e8e5157017ff6ae6e68a550a84b9a22db:/res/micropolis.tcl diff --git a/res/micropolis.tcl b/res/micropolis.tcl index e706065..773ceb3 100644 --- a/res/micropolis.tcl +++ b/res/micropolis.tcl @@ -97,6 +97,7 @@ set DemandCom 0 set DemandInd 0 set Priority 2 set Time 3 +set Pause 0 set AutoGoto 1 set AutoBudget 1 set Disasters 1 @@ -3548,6 +3549,10 @@ proc DoPickScenario {win param} { UILoadScenario $param } +proc DeleteScenarioWindow {win} { + UIQuit $win +} + ######################################################################## # Undo/Redo Facility @@ -4913,12 +4918,14 @@ proc oops {} { proc TogglePause {} { - global State + global State Pause if {"$State" != "play" || [sim Speed]} { sim Speed 0 + set Pause 1 } else { sim Speed 3 + set Pause 0 } MakeRunningSound }