Skip to content

Commit

Permalink
Fixed pausedChanged signal
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
bog-dan-ro committed Jul 10, 2016
1 parent e4abc7e commit 3891f87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fuse/ui/qml/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="eu.licentia.games.spectacol" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.1.0" android:versionCode="210" android:installLocation="auto">
<manifest package="eu.licentia.games.spectacol" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.1.1" android:versionCode="211" android:installLocation="auto">
<application android:banner="@drawable/banner" android:logo="@drawable/banner" android:icon="@drawable/icon" android:isGame="true" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Spectacol">
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="Spectacol" android:screenOrientation="landscape" android:launchMode="singleTop">
<intent-filter>
Expand Down
5 changes: 2 additions & 3 deletions fuse/ui/qml/fuseemulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,7 @@ void FuseEmulator::setPaused(bool paused)
fuse_emulation_unpause();

callFunction([this, paused]{
if (paused != bool(fuse_emulation_paused))
emit pausedChanged();
emit pausedChanged();
});
});
}
Expand Down Expand Up @@ -1383,7 +1382,7 @@ void FuseEmulator::togglePaused()
else
fuse_emulation_unpause();
callFunction([this]{
emit pausedChanged();
emit pausedChanged();
});
});
}
Expand Down

0 comments on commit 3891f87

Please sign in to comment.