bsnes-plus/bsnes/snes/video/video.hpp
2014-11-26 18:35:12 -05:00

17 lines
286 B
C++

class Video {
private:
bool frame_hires;
bool frame_interlace;
unsigned line_width[240];
void update();
void scanline();
void init();
static const uint8_t cursor[15 * 15];
void draw_cursor(uint16_t color, int x, int y);
friend class System;
};
extern Video video;