From 7bb9c3b650c99c36e1401a08b317455646cd1d2e Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Tue, 6 Sep 2011 16:55:14 +0000 Subject: [PATCH] Reverse left and right frustum --- src/mame/video/taitoair.c | 4 ++-- 1 file 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;