diff --git a/src/main/drivers/max7456.c b/src/main/drivers/max7456.c index afc535ba32..24c52cc8b2 100644 --- a/src/main/drivers/max7456.c +++ b/src/main/drivers/max7456.c @@ -290,7 +290,7 @@ uint16_t max7456GetScreenSize(void) // deal with a zero returned from here. // TODO: Inspect all callers, make sure they can handle zero and // change this function to return zero before initialization. - if (state.isInitialized && (state.registers.vm0 & VIDEO_LINES_NTSC)) { + if (state.isInitialized && ((state.registers.vm0 & VIDEO_MODE_PAL) == 0)) { return VIDEO_BUFFER_CHARS_NTSC; } return VIDEO_BUFFER_CHARS_PAL;