1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00

Remove outdated FIXMEs from Screen.cpp

The VSync renderer workaround is no longer a thing, so these comments
should go away.
This commit is contained in:
Misa 2021-10-03 13:23:12 -07:00
parent 7eea59a7e8
commit 038f15f4a6

View File

@ -58,7 +58,6 @@ void Screen::init(const ScreenSettings& settings)
// Uncomment this next line when you need to debug -flibit
// SDL_SetHintWithPriority(SDL_HINT_RENDER_DRIVER, "software", SDL_HINT_OVERRIDE);
// FIXME: m_renderer is also created in resetRendererWorkaround()!
SDL_CreateWindowAndRenderer(
640,
480,
@ -81,7 +80,6 @@ void Screen::init(const ScreenSettings& settings)
0x000000FF,
0xFF000000
);
// ALSO FIXME: This SDL_CreateTexture() is duplicated twice in this file!
m_screenTexture = SDL_CreateTexture(
m_renderer,
SDL_PIXELFORMAT_ARGB8888,