mirror of
https://github.com/wiiu-env/NotificationModule.git
synced 2026-03-22 02:14:48 -05:00
Compare commits
5 Commits
Notificati
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffddd49812 | ||
|
|
eb80c4d43a | ||
|
|
c8dbca8fad | ||
|
|
36993e1630 | ||
|
|
5801f61ec7 |
|
|
@ -1,4 +1,4 @@
|
|||
FROM ghcr.io/wiiu-env/devkitppc:20240423
|
||||
FROM ghcr.io/wiiu-env/devkitppc:20240704
|
||||
|
||||
COPY --from=ghcr.io/wiiu-env/libnotifications:20240426 /artifacts $DEVKITPRO
|
||||
COPY --from=ghcr.io/wiiu-env/libmappedmemory:20230621 /artifacts $DEVKITPRO
|
||||
|
|
|
|||
|
|
@ -72,6 +72,9 @@ void drawScreenshotSavedTexture2(GX2ColorBuffer *colorBuffer, GX2ScanTarget scan
|
|||
}
|
||||
|
||||
static void TryAddFromQueue() {
|
||||
if (!gOverlayFrame) {
|
||||
return;
|
||||
}
|
||||
std::lock_guard overlay_lock(gOverlayFrameMutex);
|
||||
// Add notification that had been called before the overlay was ready
|
||||
for (const auto ¬ification : gOverlayQueueDuringStartup) {
|
||||
|
|
|
|||
|
|
@ -3,16 +3,16 @@
|
|||
|
||||
class Timer {
|
||||
public:
|
||||
Timer() { clock_gettime(CLOCK_REALTIME, &beg_); }
|
||||
Timer() { clock_gettime(CLOCK_MONOTONIC, &beg_); }
|
||||
|
||||
double elapsed() {
|
||||
clock_gettime(CLOCK_REALTIME, &end_);
|
||||
clock_gettime(CLOCK_MONOTONIC, &end_);
|
||||
return end_.tv_sec - beg_.tv_sec +
|
||||
(end_.tv_nsec - beg_.tv_nsec) / 1000000000.;
|
||||
}
|
||||
|
||||
void reset() { clock_gettime(CLOCK_REALTIME, &beg_); }
|
||||
void reset() { clock_gettime(CLOCK_MONOTONIC, &beg_); }
|
||||
|
||||
private:
|
||||
timespec beg_, end_;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
WUMS_MODULE_EXPORT_NAME("homebrew_notifications");
|
||||
|
||||
#define VERSION "v0.1.2"
|
||||
#define VERSION "v0.1.3"
|
||||
|
||||
WUMS_DEPENDS_ON(homebrew_memorymapping);
|
||||
WUMS_DEPENDS_ON(homebrew_functionpatcher);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user