diff --git a/utils/doom.c b/utils/doom.c index c5774dfd..048c175f 100644 --- a/utils/doom.c +++ b/utils/doom.c @@ -720,6 +720,8 @@ int // and, hopefully, less insane rotation quirks ;). if (deviceQuirks.ntxRotaQuirk != NTX_ROTA_SANE) { req_rota = (deviceQuirks.ntxBootRota + 1) & 3; + } else { + req_rota = deviceQuirks.ntxBootRota; } LOG("Device's expected Portrait orientation should be: %hhd (%s)!", req_rota, diff --git a/utils/fbdepth.c b/utils/fbdepth.c index 855dcf06..59438e40 100644 --- a/utils/fbdepth.c +++ b/utils/fbdepth.c @@ -372,6 +372,8 @@ int // and, hopefully, less insane rotation quirks ;). if (deviceQuirks.ntxRotaQuirk != NTX_ROTA_SANE) { req_rota = (deviceQuirks.ntxBootRota + 1) & 3; + } else { + req_rota = deviceQuirks.ntxBootRota; } LOG("Device's expected Portrait orientation should be: %hhd (%s)!", req_rota,