mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Fix some compile errors
This commit is contained in:
parent
426837e7d4
commit
4613c0354b
2 changed files with 4 additions and 2 deletions
|
@ -10,6 +10,7 @@
|
|||
#include <vector>
|
||||
#include <unordered_map>
|
||||
#include <stdexcept>
|
||||
#include <cstring>
|
||||
|
||||
class CanvasTexture
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
#include "window/window.h"
|
||||
#include <stdexcept>
|
||||
|
||||
#ifdef WIN32
|
||||
|
||||
|
@ -67,12 +68,12 @@ Size DisplayWindow::GetScreenSize()
|
|||
throw std::runtime_error("DisplayWindow::GetScreenSize not implemented");
|
||||
}
|
||||
|
||||
int DisplayWindow::StartTimer(int timeoutMilliseconds, std::function<void()> onTimer)
|
||||
void* DisplayWindow::StartTimer(int timeoutMilliseconds, std::function<void()> onTimer)
|
||||
{
|
||||
throw std::runtime_error("DisplayWindow::StartTimer not implemented");
|
||||
}
|
||||
|
||||
void DisplayWindow::StopTimer(int timerID)
|
||||
void DisplayWindow::StopTimer(void* timerID)
|
||||
{
|
||||
throw std::runtime_error("DisplayWindow::StopTimer not implemented");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue