summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AriesParts/src/com/cyanogenmod/AriesParts/TvOutService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/AriesParts/src/com/cyanogenmod/AriesParts/TvOutService.java b/AriesParts/src/com/cyanogenmod/AriesParts/TvOutService.java
index 5812ac6..3f6216f 100644
--- a/AriesParts/src/com/cyanogenmod/AriesParts/TvOutService.java
+++ b/AriesParts/src/com/cyanogenmod/AriesParts/TvOutService.java
@@ -46,14 +46,14 @@ public class TvOutService extends Service {
}
else if (Intent.ACTION_SCREEN_ON.equals(action)) {
if (mWasOn) {
- enable();
+ SystemProperties.set("ctl.start", "tvouthack");
mWasOn = false;
}
}
else if (Intent.ACTION_SCREEN_OFF.equals(action)) {
if (mTvOut._isEnabled()) {
mWasOn = true;
- disable();
+ SystemProperties.set("ctl.stop", "tvouthack");
}
}
}