summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mame/video/taitoair.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/taitoair.c b/src/mame/video/taitoair.c
index 2f59874cad2..20d1d936aea 100644
--- a/src/mame/video/taitoair.c
+++ b/src/mame/video/taitoair.c
@@ -493,8 +493,8 @@ void airInfernoFrustum(const INT16 leftExtent, const INT16 bottomExtent, float*
/* Hard-coded near and far clipping planes :( */
float nearZ = 1.0f;
float farZ = 10000.0f;
- float left = -1.0f;
- float right = 1.0f;
+ float left = 1.0f;
+ float right = -1.0f;
float bottom = (float)(-bottomExtent) / leftExtent;
float top = (float)(bottomExtent) / leftExtent;