forked from PretendoNetwork/Inkay
Rebrand to Inkay
This commit is contained in:
parent
521b02d4e0
commit
3448ef7a59
4 changed files with 10 additions and 20 deletions
Binary file not shown.
13
README.md
13
README.md
|
|
@ -1,12 +1 @@
|
|||
# Example plugin
|
||||
|
||||
This is just a simple example plugin which can be used as a template.
|
||||
|
||||
## Building
|
||||
|
||||
For building you need:
|
||||
- [wups](https://github.com/Maschell/WiiUPluginSystem)
|
||||
- [wut](https://github.com/decaf-emu/wut)
|
||||
- [libutils](https://github.com/Maschell/libutils/tree/wut) for common functions (WUT version).
|
||||
|
||||
Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself.
|
||||
# Inkay - In-game patches for Juxtaposition
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ WUT_ENABLE_CPP := 0
|
|||
WUT_DEFAULT_MALLOC := 1
|
||||
|
||||
# Target filename
|
||||
TARGET := $(notdir $(CURDIR)).mod
|
||||
TARGET := Inkay-pretendo.mod
|
||||
|
||||
# Source directories
|
||||
SOURCES := src
|
||||
|
|
|
|||
15
src/main.cpp
15
src/main.cpp
|
|
@ -1,4 +1,5 @@
|
|||
/* Copyright 2019 Ash Logan "quarktheawesome" <ash@heyquark.com>
|
||||
/* Copyright 2021 Pretendo Network contributors <pretendo.network>
|
||||
Copyright 2019 Ash Logan "quarktheawesome" <ash@heyquark.com>
|
||||
Copyright 2019 Maschell
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
||||
|
|
@ -18,10 +19,10 @@
|
|||
Mandatory plugin information.
|
||||
If not set correctly, the loader will refuse to use the plugin.
|
||||
**/
|
||||
WUPS_PLUGIN_NAME("MiiversePlugin");
|
||||
WUPS_PLUGIN_DESCRIPTION("AAAAAA");
|
||||
WUPS_PLUGIN_VERSION("v1.0");
|
||||
WUPS_PLUGIN_AUTHOR("quarktheawesome");
|
||||
WUPS_PLUGIN_NAME("Inkay");
|
||||
WUPS_PLUGIN_DESCRIPTION("In-game patches for Juxtaposition");
|
||||
WUPS_PLUGIN_VERSION("v0.1");
|
||||
WUPS_PLUGIN_AUTHOR("Pretendo contributors");
|
||||
WUPS_PLUGIN_LICENSE("ISC");
|
||||
|
||||
WUPS_ALLOW_KERNEL();
|
||||
|
|
@ -39,7 +40,7 @@ ON_APPLICATION_START(args){
|
|||
log_init();
|
||||
|
||||
if (!args.kernel_access) {
|
||||
DEBUG_FUNCTION_LINE("MiiversePlugin: No kernel access!\n");
|
||||
DEBUG_FUNCTION_LINE("Inkay: No kernel access!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -63,7 +64,7 @@ ON_APPLICATION_START(args){
|
|||
}
|
||||
|
||||
ON_APPLICATION_ENDING(){
|
||||
DEBUG_FUNCTION_LINE("MiiversePlugin: shutting down...\n");
|
||||
DEBUG_FUNCTION_LINE("Inkay: shutting down...\n");
|
||||
OSDynLoad_Release(olv_handle);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue