mirror of
https://github.com/wiiu-env/AromaBasePlugin.git
synced 2025-02-18 20:26:26 +01:00
Display notification if the sd card is write locked
This commit is contained in:
parent
4e5d5986d4
commit
ba99747d4c
@ -18,6 +18,21 @@ void ShowHints() {
|
|||||||
if (sShutdownHintThread || !isOverlayReady) {
|
if (sShutdownHintThread || !isOverlayReady) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *tmp_file = "fs:/vol/external01/wiiu/write_lock";
|
||||||
|
int fd = -1;
|
||||||
|
if ((fd = open(tmp_file, O_CREAT | O_TRUNC | O_RDWR)) < 0) {
|
||||||
|
NotificationModuleStatus err;
|
||||||
|
NMColor red = {237, 28, 36, 255};
|
||||||
|
NotificationModuleHandle outHandle;
|
||||||
|
if ((err = NotificationModule_SetDefaultValue(NOTIFICATION_MODULE_NOTIFICATION_TYPE_DYNAMIC, NOTIFICATION_MODULE_DEFAULT_OPTION_BACKGROUND_COLOR, red)) == NOTIFICATION_MODULE_RESULT_SUCCESS &&
|
||||||
|
(err = NotificationModule_AddDynamicNotification("Failed to write to the sd card. Please restart the console and make sure the sd card is not write locked.", &outHandle)) == NOTIFICATION_MODULE_RESULT_SUCCESS) {
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
close(fd);
|
||||||
|
remove(tmp_file);
|
||||||
|
}
|
||||||
|
|
||||||
if (!gConfigMenuHintShown) {
|
if (!gConfigMenuHintShown) {
|
||||||
NotificationModuleStatus err;
|
NotificationModuleStatus err;
|
||||||
if ((err = NotificationModule_SetDefaultValue(NOTIFICATION_MODULE_NOTIFICATION_TYPE_INFO, NOTIFICATION_MODULE_DEFAULT_OPTION_DURATION_BEFORE_FADE_OUT, 15.0f)) == NOTIFICATION_MODULE_RESULT_SUCCESS &&
|
if ((err = NotificationModule_SetDefaultValue(NOTIFICATION_MODULE_NOTIFICATION_TYPE_INFO, NOTIFICATION_MODULE_DEFAULT_OPTION_DURATION_BEFORE_FADE_OUT, 15.0f)) == NOTIFICATION_MODULE_RESULT_SUCCESS &&
|
||||||
@ -37,12 +52,9 @@ void ShowHints() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void StartHintThread() {
|
void StartHintThread() {
|
||||||
if (!gConfigMenuHintShown) {
|
sShowHintThread.reset();
|
||||||
sShutdownHintThread = false;
|
sShutdownHintThread = false;
|
||||||
sShowHintThread = std::make_unique<std::thread>(ShowHints);
|
sShowHintThread = std::make_unique<std::thread>(ShowHints);
|
||||||
} else {
|
|
||||||
sShowHintThread.reset();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void StopHintThread() {
|
void StopHintThread() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user