mirror of https://github.com/stella-emu/stella.git
resolution reporting fix
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1094 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
3716db2fce
commit
262d0e261f
|
@ -8,7 +8,7 @@
|
||||||
// SS SS tt ee ll ll aa aa
|
// SS SS tt ee ll ll aa aa
|
||||||
// SSSS ttt eeeee llll llll aaaaa
|
// SSSS ttt eeeee llll llll aaaaa
|
||||||
//
|
//
|
||||||
// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team
|
// Copyright (c) 1995-2006 by Bradford W. Mott and the Stella team
|
||||||
//
|
//
|
||||||
// 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.
|
||||||
|
@ -32,8 +32,10 @@ class OSystemWinCE : public OSystem
|
||||||
virtual void mainLoop();
|
virtual void mainLoop();
|
||||||
virtual uInt32 getTicks(void);
|
virtual uInt32 getTicks(void);
|
||||||
virtual void setFramerate(uInt32 framerate);
|
virtual void setFramerate(uInt32 framerate);
|
||||||
virtual void getScreenDimensions(int& width, int& height) { width = GetSystemMetrics(SM_CXSCREEN); height = GetSystemMetrics(SM_CYSCREEN); };
|
// ok, we lie a bit to Stephen here, but it's for a good purpose :)
|
||||||
inline const GUI::Font& font() const;
|
// we can always display these resolutions anyway
|
||||||
|
virtual void getScreenDimensions(int& width, int& height) { width = 320; height = 240; };
|
||||||
|
inline const GUI::Font& launcherFont() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue