Changed a few things to accomodate the new SDL libs.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1171 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
azaballa 2006-12-03 19:19:35 +00:00
parent 67f631e697
commit 0eff44fa5c
2 changed files with 4 additions and 5 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: OSystemGP2X.cxx,v 1.14 2006-11-29 01:29:28 azaballa Exp $ // $Id: OSystemGP2X.cxx,v 1.15 2006-12-03 19:19:34 azaballa Exp $
// Modified on 2006/01/06 by Alex Zaballa for use on GP2X // Modified on 2006/01/06 by Alex Zaballa for use on GP2X
//============================================================================ //============================================================================
@ -128,8 +128,8 @@ uInt32 OSystemGP2X::getTicks()
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void OSystemGP2X::getScreenDimensions(int& width, int& height) void OSystemGP2X::getScreenDimensions(int& width, int& height)
{ {
width = 320; width = 640;
height = 240; height = 480;
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: SettingsGP2X.cxx,v 1.12 2006-09-18 01:32:45 azaballa Exp $ // $Id: SettingsGP2X.cxx,v 1.13 2006-12-03 19:19:35 azaballa Exp $
// Modified on 2006/02/05 by Alex Zaballa for use on GP2X // Modified on 2006/02/05 by Alex Zaballa for use on GP2X
//============================================================================ //============================================================================
@ -35,7 +35,6 @@ SettingsGP2X::SettingsGP2X(OSystem* osystem)
setInternal("freq", "15700"); setInternal("freq", "15700");
setInternal("tiafreq", "15700"); setInternal("tiafreq", "15700");
setInternal("clipvol", "false"); setInternal("clipvol", "false");
setInternal("joymouse", "true");
setInternal("rombrowse", "true"); setInternal("rombrowse", "true");
setInternal("romdir", "/mnt/sd/"); setInternal("romdir", "/mnt/sd/");
setInternal("ssdir", "/mnt/sd/"); setInternal("ssdir", "/mnt/sd/");