From 41784351338782dcf3d31279a266874e41c54b6b Mon Sep 17 00:00:00 2001 From: Paul Date: Sun, 10 Jun 2001 23:20:13 +0000 Subject: [PATCH] --- source/frontend/options.cpp | 10 +++++----- source/frontend/scrollbg.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/frontend/options.cpp b/source/frontend/options.cpp index 37ebddb50..621a9c511 100644 --- a/source/frontend/options.cpp +++ b/source/frontend/options.cpp @@ -220,6 +220,11 @@ void CFrontEndOptions::init() m_background=new ("Options Background") CScrollyBackground(); m_background->init(); m_background->setOt(MAX_OT-2); + m_background->setTheDrawMode(CScrollyBackground::DRAWMODE_ADDITIVE); + m_background->setColour(80,80,80); + m_background->setSpeed(1,-1); + m_background->setSpeedScale(0); + // Create the menu frames for(i=0;isetSpeed(ox,oy); - m_background->setSpeedScale(os); m_background->think(_frames); if(!CFader::isFading()) diff --git a/source/frontend/scrollbg.h b/source/frontend/scrollbg.h index c12bc17d4..74dcc642a 100644 --- a/source/frontend/scrollbg.h +++ b/source/frontend/scrollbg.h @@ -39,7 +39,7 @@ class CScrollyBackground public: typedef enum { - DRAWMODE_NORMAL=1, + DRAWMODE_NORMAL=0, DRAWMODE_ADDITIVE=1, DRAWMODE_SUBTRACTIVE=2, }DRAWMODE;