mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
SDL buildfix
This commit is contained in:
parent
aadb700505
commit
50f4e4b1fd
2 changed files with 1 additions and 8 deletions
|
@ -439,13 +439,6 @@ int SDLGLGraphicsContext::Init(SDL_Window *&window, int x, int y, int w, int h,
|
|||
return 0;
|
||||
}
|
||||
|
||||
void SDLGLGraphicsContext::SwapInterval(int interval) {
|
||||
renderManager_->SwapInterval(interval);
|
||||
}
|
||||
|
||||
void SDLGLGraphicsContext::Shutdown() {
|
||||
}
|
||||
|
||||
void SDLGLGraphicsContext::ShutdownFromRenderThread() {
|
||||
delete draw_;
|
||||
draw_ = nullptr;
|
||||
|
|
|
@ -16,7 +16,7 @@ public:
|
|||
// Returns 0 on success.
|
||||
int Init(SDL_Window *&window, int x, int y, int w, int h, int mode, std::string *error_message);
|
||||
|
||||
void Shutdown() override;
|
||||
void Shutdown() override {}
|
||||
void ShutdownFromRenderThread() override;
|
||||
|
||||
void Resize() override {}
|
||||
|
|
Loading…
Add table
Reference in a new issue