(svn r13537) -Fix [FS#2090](r13523): QSortT won't work this way, use Dimension instead of uint16[2] for resolutions
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
#define VIDEO_VIDEO_DRIVER_HPP
|
||||
|
||||
#include "../driver.h"
|
||||
#include "../core/geometry_type.hpp"
|
||||
|
||||
class VideoDriver: public Driver {
|
||||
public:
|
||||
@@ -35,7 +36,7 @@ public:
|
||||
extern VideoDriver *_video_driver;
|
||||
extern char _ini_videodriver[32];
|
||||
extern int _num_resolutions;
|
||||
extern uint16 _resolutions[32][2];
|
||||
extern uint16 _cur_resolution[2];
|
||||
extern Dimension _resolutions[32];
|
||||
extern Dimension _cur_resolution;
|
||||
|
||||
#endif /* VIDEO_VIDEO_DRIVER_HPP */
|
||||
|
||||
Reference in New Issue
Block a user