- [NEW] La finestra del spectrum mostra en el titol si està stoppada l'execució - [FIX] Durante el debuguech la finestra del spectrum ara s'actualitza
22 lines
410 B
C++
22 lines
410 B
C++
#pragma once
|
|
#include <SDL2/SDL.h>
|
|
|
|
namespace zxscreen
|
|
{
|
|
void init();
|
|
void reinit();
|
|
void focus();
|
|
void refresh(const uint32_t dt);
|
|
void fullrefresh();
|
|
void redraw(const bool present=true);
|
|
void present();
|
|
void setTitle(const char* title);
|
|
|
|
void incZoom();
|
|
void decZoom();
|
|
void toggleFullscreen();
|
|
const bool getFullscreen();
|
|
|
|
SDL_Renderer *getrenderer();
|
|
}
|