[Change] Narrowed FOV for sector view.

This commit is contained in:
Rtch90 2017-12-23 17:37:18 +00:00
parent ca3c69cd33
commit fa459bead3
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ void SectorView::Draw3D(void) {
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(50, L3D::GetScrAspect(), 1.0, 100.0);
gluPerspective(40, L3D::GetScrAspect(), 1.0, 100.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();

View File

@ -17,7 +17,7 @@ struct systemloc_t {
int secX, secY, sysIdx;
};
class CustomSBody;
struct CustomSBody;
/* Doubles: All masses are in Kg, all lengths in meters. */
class StarSystem {