[Scummvm-cvs-logs] CVS: scummvm/backends/epoc SymbianOS.cpp,1.4.2.1,1.4.2.2

Lars Persson anotherguest at users.sourceforge.net
Thu Oct 20 12:38:51 CEST 2005


Update of /cvsroot/scummvm/scummvm/backends/epoc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30819/backends/epoc

Modified Files:
      Tag: branch-0-8-0
	SymbianOS.cpp 
Log Message:
Set S60 FM audio quality to low for performance reasons.

Index: SymbianOS.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/epoc/SymbianOS.cpp,v
retrieving revision 1.4.2.1
retrieving revision 1.4.2.2
diff -u -d -r1.4.2.1 -r1.4.2.2
--- SymbianOS.cpp	18 Oct 2005 02:11:15 -0000	1.4.2.1
+++ SymbianOS.cpp	20 Oct 2005 19:36:30 -0000	1.4.2.2
@@ -16,7 +16,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  *
  * $Header$
  */
@@ -48,7 +48,11 @@
 OSystem_SDL_Symbian::OSystem_SDL_Symbian() :_channels(0),_stereo_mix_buffer(0)
 {
 	ConfMan.set("FM_high_quality", false);
+#ifndef S60 // S60 has low quality as default
 	ConfMan.set("FM_medium_quality", true);
+#else
+	ConfMan.set("FM_medium_quality", false);
+#endif
 	ConfMan.set("joystick_num",0); // Symbian OS  should have joystick_num set to 0 in the ini file , but uiq devices might refuse opening the joystick
 	ConfMan.flushToDisk();
 	// Initialize global key mapping for Smartphones
@@ -355,4 +359,4 @@
 //EMPTY_SCALER_IMPLEMENTATION(DotMatrix);
 //EMPTY_SCALER_IMPLEMENTATION(HQ2x);
 //EMPTY_SCALER_IMPLEMENTATION(HQ3x);
-*/
+*/
\ No newline at end of file





More information about the Scummvm-git-logs mailing list