1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Remove Overscan::init

This commit is contained in:
Sergey Lipskiy 2018-12-18 16:53:32 +07:00
parent cb0cf5bed9
commit 13966d7de0
2 changed files with 4 additions and 9 deletions

View File

@ -67,8 +67,6 @@ void Config::resetToDefaults()
frameBufferEmulation.fbInfoDisabled = 1;
#endif
frameBufferEmulation.enableOverscan = 0;
frameBufferEmulation.overscanPAL.init();
frameBufferEmulation.overscanNTSC.init();
textureFilter.txFilterMode = 0;
textureFilter.txEnhancementMode = 0;

View File

@ -110,13 +110,10 @@ struct Config
// Overscan
u32 enableOverscan;
struct {
s32 left;
s32 right;
s32 top;
s32 bottom;
void init() {
left = right = top = bottom = 0;
}
s32 left = 0;
s32 right = 0;
s32 top = 0;
s32 bottom = 0;
} overscanPAL, overscanNTSC;
} frameBufferEmulation;