mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
This commit changes the 'Capture Screenshot' action so that it bypasses the overscan, scanline filter and Video Filter settings.
18 lines
579 B
C++
18 lines
579 B
C++
class Interface : public SNES::Interface {
|
|
public:
|
|
void video_extras(uint16_t *data, unsigned width, unsigned height);
|
|
void video_refresh(const uint16_t *data, unsigned width, unsigned height);
|
|
void audio_sample(uint16_t left, uint16_t right);
|
|
void input_poll();
|
|
int16_t input_poll(bool port, SNES::Input::Device device, unsigned index, unsigned id);
|
|
void message(const string &text);
|
|
|
|
Interface();
|
|
void captureScreenshot(const QImage&);
|
|
void captureSPC();
|
|
bool saveScreenshot;
|
|
bool framesUpdated;
|
|
unsigned framesExecuted;
|
|
};
|
|
|
|
extern Interface interface;
|