Disabled SDL Cursor by default for the GP2X.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1164 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
azaballa 2006-11-29 20:01:56 +00:00
parent 7ac52b8609
commit e3c0ee39ff
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: FrameBuffer.cxx,v 1.99 2006-11-27 21:02:45 stephena Exp $
// $Id: FrameBuffer.cxx,v 1.100 2006-11-29 20:01:56 azaballa Exp $
//============================================================================
#include <sstream>
@ -430,7 +430,11 @@ void FrameBuffer::setCursorState()
break;
default:
#if !defined(GP2X)
showCursor(true);
#else
showCursor(false);
#endif
}
}