summaryrefslogtreecommitdiffstats
path: root/src/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.c')
-rw-r--r--src/ui.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui.c b/src/ui.c
index b37df49819..a6cee804ad 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -1106,8 +1106,8 @@ check_col(int col)
{
if (col < 0)
return 0;
- if (col >= (int)screen_Columns)
- return (int)screen_Columns - 1;
+ if (col >= screen_Columns)
+ return screen_Columns - 1;
return col;
}
@@ -1119,8 +1119,8 @@ check_row(int row)
{
if (row < 0)
return 0;
- if (row >= (int)screen_Rows)
- return (int)screen_Rows - 1;
+ if (row >= screen_Rows)
+ return screen_Rows - 1;
return row;
}