diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/zvision.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/engines/zvision/zvision.h b/engines/zvision/zvision.h index 366e96f6a7..844b8ad18f 100644 --- a/engines/zvision/zvision.h +++ b/engines/zvision/zvision.h @@ -64,6 +64,15 @@ public: ZVision(OSystem *syst, const ZVisionGameDescription *gameDesc); ~ZVision(); +public: + /** + * A Rectangle centered inside the actual window. All in-game coordinates + * are given in this coordinate space. Also, all images are clipped to the + * edges of this Rectangle + */ + const Common::Rect _workingWindow; + const Graphics::PixelFormat _pixelFormat; + private: enum { WINDOW_WIDTH = 640, @@ -72,18 +81,11 @@ private: WORKING_WINDOW_HEIGHT = 320, ROTATION_SCREEN_EDGE_OFFSET = 60, - MAX_ROTATION_SPEED = 150 // Pixels per second + MAX_ROTATION_SPEED = 250 // Pixels per second }; Console *_console; const ZVisionGameDescription *_gameDescription; - /** - * A Rectangle centered inside the actual window. All in-game coordinates - * are given in this coordinate space. Also, all images are clipped to the - * edges of this Rectangle - */ - const Common::Rect _workingWindow; - const Graphics::PixelFormat _pixelFormat; const int _desiredFrameTime; |