diff options
Diffstat (limited to 'plugins/AVS/src/main.cpp')
-rw-r--r-- | plugins/AVS/src/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 9fd4421229..f99af3102b 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -345,8 +345,15 @@ static int ModulesLoaded(WPARAM, LPARAM) return 0;
}
+static IconItem iconList[] =
+{
+ { LPGEN("Avatar"), "main", IDI_AVATAR },
+};
+
int CMPlugin::Load()
{
+ registerIcon("AVS", iconList);
+
LoadACC();
hShutdownEvent = CreateEvent(nullptr, TRUE, FALSE, nullptr);
|