From ac6d4ec7710efd588d5f1bf1917a37de122b4810 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 2 Apr 2016 20:24:25 +0200 Subject: [PATCH] forget to rename 2 files kudos to dimok/chadderz --- README | 3 +++ src/kernel/kernel_functions.c | 2 +- src/main.c | 2 +- src/patcher/function_hooks.c | 2 +- src/{discdumper.c => saviine.c} | 2 +- src/{discdumper.h => saviine.h} | 0 6 files changed, 7 insertions(+), 4 deletions(-) rename src/{discdumper.c => saviine.c} (99%) rename src/{discdumper.h => saviine.h} (100%) diff --git a/README b/README index 1cc520e..a612b19 100644 --- a/README +++ b/README @@ -63,3 +63,6 @@ For the commmon folder you have two options: - on errors during the injection, the wii tries to restore the old data. but it can't guarantee that it works, make sure to make backups! +Thanks to +dimok - for the homebrew launcher, loadiine gx 2, and ddd with was the base environment for the current version. =) +chadderz - for cafiine. Still using some of this old funcions =) \ No newline at end of file diff --git a/src/kernel/kernel_functions.c b/src/kernel/kernel_functions.c index d143b28..7beaee9 100644 --- a/src/kernel/kernel_functions.c +++ b/src/kernel/kernel_functions.c @@ -3,7 +3,7 @@ #include "common/kernel_defs.h" #include "kernel/kernel_functions.h" #include "kernel/syscalls.h" -#include "discdumper.h" +#include "saviine.h" /* our retain data */ ReducedCosAppXmlInfo cosAppXmlInfoStruct __attribute__((section(".data"))); diff --git a/src/main.c b/src/main.c index e668085..43ec6e6 100644 --- a/src/main.c +++ b/src/main.c @@ -17,7 +17,7 @@ #include "common/common.h" #include "game/rpx_rpl_table.h" #include "game/memory_area_table.h" -#include "discdumper.h" +#include "saviine.h" #include "patcher/function_hooks.h" #include "kernel/kernel_functions.h" diff --git a/src/patcher/function_hooks.c b/src/patcher/function_hooks.c index 6e0d90a..6741213 100644 --- a/src/patcher/function_hooks.c +++ b/src/patcher/function_hooks.c @@ -9,7 +9,7 @@ #include "dynamic_libs/os_functions.h" #include "kernel/kernel_functions.h" #include "function_hooks.h" -#include "discdumper.h" +#include "saviine.h" #define LIB_CODE_RW_BASE_OFFSET 0xC1000000 #define CODE_RW_BASE_OFFSET 0x00000000 diff --git a/src/discdumper.c b/src/saviine.c similarity index 99% rename from src/discdumper.c rename to src/saviine.c index 4c10d31..8164a07 100644 --- a/src/discdumper.c +++ b/src/saviine.c @@ -10,7 +10,7 @@ #include "game/rpx_rpl_table.h" #include "game/memory_area_table.h" #include "utils/net.h" -#include "discdumper.h" +#include "saviine.h" #include "utils/logger.h" #define TITLE_LOCATION_ODD 0 diff --git a/src/discdumper.h b/src/saviine.h similarity index 100% rename from src/discdumper.h rename to src/saviine.h