Merge branch 'fix-game' into 'master'
Display got broken See merge request ynerant/squirrel-battle!26
This commit is contained in:
commit
319d5b20eb
|
@ -72,7 +72,7 @@ class Display:
|
||||||
top_y, top_x = max(0, top_y), max(0, top_x)
|
top_y, top_x = max(0, top_y), max(0, top_x)
|
||||||
window_y, window_x = max(0, window_y), max(0, window_x)
|
window_y, window_x = max(0, window_y), max(0, window_x)
|
||||||
screen_max_y, screen_max_x = self.screen.getmaxyx() if self.screen \
|
screen_max_y, screen_max_x = self.screen.getmaxyx() if self.screen \
|
||||||
else 42, 42
|
else (42, 42)
|
||||||
last_y, last_x = min(screen_max_y - 1, last_y), \
|
last_y, last_x = min(screen_max_y - 1, last_y), \
|
||||||
min(screen_max_x - 1, last_x)
|
min(screen_max_x - 1, last_x)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue