Increase the default darkening speed of :sunset...
...(from every 5 frames to 3) More useful like that. For example, allow to see water update. ":sunset 5" can still be used to get old speed.
This commit is contained in:
parent
00f92b139f
commit
14f16c4209
1 changed files with 1 additions and 1 deletions
|
@ -929,7 +929,7 @@ void display::drawing_buffer_clear()
|
|||
void display::sunset(const size_t delay)
|
||||
{
|
||||
// This allow both parametric and toggle use
|
||||
sunset_delay = (sunset_delay == 0 && delay == 0) ? 5 : delay;
|
||||
sunset_delay = (sunset_delay == 0 && delay == 0) ? 3 : delay;
|
||||
}
|
||||
|
||||
void display::toggle_benchmark()
|
||||
|
|
Loading…
Add table
Reference in a new issue