You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mode = val & 0x000E0000
if (mode & 0x00010000):
print(" HDTV 480i")
but also this:
if val & 0x00010000:
print(" Widescreen")
Both of them check val & 0x00010000, although it's not even reachable in the mode variable, as that particular bit was masked. Therefore, it is assumed that the resolution field is bad.
The text was updated successfully, but these errors were encountered:
Code contains this:
but also this:
Both of them check
val & 0x00010000
, although it's not even reachable in themode
variable, as that particular bit was masked. Therefore, it is assumed that the resolution field is bad.The text was updated successfully, but these errors were encountered: