Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sysmodules/rosalina/source/plugin/plgloader.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "memory.h"
#include "sleep.h"
#include "task_runner.h"
#include "draw.h"

#define PLGLDR_VERSION (SYSTEM_VERSION(1, 0, 2))

Expand Down Expand Up @@ -171,10 +172,10 @@ void PluginLoader__HandleCommands(void *_ctx)
// A little flash to notify the user that the plugin is loaded
for (u32 i = 0; i < 64; i++)
{
REG32(0x10202204) = 0x01FF9933;
LCD_TOP_FILLCOLOR = 0x01FF9933;
svcSleepThread(5000000);
}
REG32(0x10202204) = 0;
LCD_TOP_FILLCOLOR = 0;
}
//if (!ctx->userLoadParameters.noIRPatch)
// IR__Patch();
Expand Down