Skip to content

Commit

Permalink
[#211]
Browse files Browse the repository at this point in the history
Rot und Gruen LED Logik korrigiert.
  • Loading branch information
ThKattanek committed Aug 24, 2021
1 parent e2dc837 commit d32aaa1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/floppy1581_class.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,12 @@ bool Floppy1581::OneCycle()
void Floppy1581::GetFloppyInfo(FLOPPY_1581_INFO *fi)
{
if(cia->pa.GetOutput() & 0x20)
fi->Power_Led = false;
else
fi->Power_Led = true;
else
fi->Power_Led = false;

if(cia->pa.GetOutput() & 0x40)
fi->Activate_Led = false;
fi->Activate_Led = true;
else
fi->Activate_Led = false;
}
Expand Down
4 changes: 2 additions & 2 deletions src/floppy1581_window.ui
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>263</width>
<height>101</height>
<width>303</width>
<height>88</height>
</rect>
</property>
<property name="windowTitle">
Expand Down

0 comments on commit d32aaa1

Please sign in to comment.