fix windows build

This commit is contained in:
Daniel 2018-07-12 21:03:21 -07:00
parent fcf791af49
commit f3add19dc2
2 changed files with 5 additions and 5 deletions

View file

@ -11,9 +11,9 @@ $cmake_status = $(cmake -DDEBUG_PPU=ON -DNESTEST=OFF .. | Out-Host;$?;)
$build_status = $(MSBuild.exe /p:Configuration=Release .\anese.sln | Out-Host;$?;)
if ($cmake_status -and $build_status -and $run) {
if ($rom -eq "") {
invoke-expression "cmd /c start powershell -Command { .\Release\anese.exe }"
invoke-expression "cmd /c start powershell -Command { .\Release\anese.exe --widenes }"
} else {
invoke-expression "cmd /c start powershell -Command { .\Release\anese.exe '..\$rom' }"
invoke-expression "cmd /c start powershell -Command { .\Release\anese.exe --widenes '..\$rom' }"
}
}
Set-Location -Path ..;

View file

@ -16,7 +16,7 @@ public:
, renderer(renderer)
{}
virtual void input(const SDL_Event&);
virtual void update();
virtual void output();
virtual void input(const SDL_Event&) = 0;
virtual void update() = 0;
virtual void output() = 0;
};