blob: ae7a302ff892bfac0cd889fec5c65f3d0f35b976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "CustomLoadingScreen.h"
#include "Patcher.h"
#include "Offsets.h"
CustomLoadingScreen::CustomLoadingScreen(char* imagePath)
{
this->imagePath = imagePath;
}
void CustomLoadingScreen::OnInitialise()
{
//original string "/resources/loading_slash.png"
Patcher().Patch((BYTE*)GetModuleHandle(NULL) + Offsets::pathToLoadScreen,(int64_t)this->imagePath);
//change LEA to MOV by changing 0x8d to 0x8b
Patcher().Patch((BYTE*)GetModuleHandle(NULL) + Offsets::loadPathToLoadScreen + 1, (int8_t)0x8b);
}
void CustomLoadingScreen::OnMenuMainWindow()
{
}
void CustomLoadingScreen::OnShutdown()
{
//Restart the game
}
|