Video: polish aspect ratio related code comments to make it clearer

This commit is contained in:
Filoppi
2023-09-09 15:48:37 +03:00
parent b4bfc4feba
commit 24004af814
7 changed files with 20 additions and 12 deletions

View File

@ -11,11 +11,14 @@
class PointerWrap;
// This class is responsible for tracking the game's aspect ratio.
// This exclusively supports 4:3 or 16:9 detection by default.
class WidescreenManager
{
public:
WidescreenManager();
// Just a helper to tell whether the game seems to be running in widescreen,
// or if it's being forced to.
bool IsGameWidescreen() const { return m_is_game_widescreen; }
void DoState(PointerWrap& p);