Skip to content
Snippets Groups Projects
Commit 62bfad9a authored by tobias's avatar tobias
Browse files

Fixed bug in SinglePlayerMode

parent 060521a7
Branches
Tags
No related merge requests found
......@@ -30,7 +30,7 @@ public class PadStatusListener implements ChangeListener<PadStatus> {
// bei Single Pad Playing wird das alte Pad beendet.
if (!profileSettings.isMultiplePlayer()) {
if (currentPlayingPad != null) {
if (currentPlayingPad != null && currentPlayingPad != pad) {
if (currentPlayingPad.getStatus() == PadStatus.PLAY || currentPlayingPad.getStatus() == PadStatus.PAUSE) {
currentPlayingPad.setStatus(PadStatus.STOP);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment