Skip to content

Commit 5d1cbae

Browse files
committed
resolve syntactic ambiguity
1 parent 5cfeeff commit 5d1cbae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest]
16-
perl-version: ['5.10', '5.14', '5.20']
16+
perl-version: ['5.16', '5.20']
1717
include:
1818
- perl-version: '5.30'
1919
os: ubuntu-latest

test.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1467,7 +1467,7 @@ sub cbResizeScene {
14671467
glMatrixMode(GL_PROJECTION);
14681468
glLoadIdentity();
14691469
my $fW = fH * $Width/$Height;
1470-
glFrustum(-$fW, $fW, -fH, fH, zNEAR, zFAR);
1470+
glFrustum(-$fW, $fW, -fH(), fH, zNEAR, zFAR);
14711471
glMatrixMode(GL_MODELVIEW);
14721472
$Window_Width = $Width;
14731473
$Window_Height = $Height;

0 commit comments

Comments
 (0)