Rename stuff
This commit is contained in:
parent
b4ab1bf136
commit
69db2c0734
2
deps/protobuf
vendored
2
deps/protobuf
vendored
@ -1 +1 @@
|
|||||||
Subproject commit 584233bd043a80b2172a598039113d4fe14dc326
|
Subproject commit 78105897a8f01c7be9cf8502b6c58d47eb1ccdd7
|
@ -24,7 +24,7 @@ namespace Components
|
|||||||
};
|
};
|
||||||
|
|
||||||
memcpy(reinterpret_cast<void*>(0x66E1CB0), &fastfiles, sizeof(fastfiles));
|
memcpy(reinterpret_cast<void*>(0x66E1CB0), &fastfiles, sizeof(fastfiles));
|
||||||
Game::LoadInitialFF();
|
Game::R_LoadGraphicsAssets();
|
||||||
|
|
||||||
Utils::Hook::Call<void()>(0x4F84C0)();
|
Utils::Hook::Call<void()>(0x4F84C0)();
|
||||||
}
|
}
|
||||||
|
@ -95,7 +95,6 @@ namespace Game
|
|||||||
Live_MPAcceptInvite_t Live_MPAcceptInvite = (Live_MPAcceptInvite_t)0x420A6D;
|
Live_MPAcceptInvite_t Live_MPAcceptInvite = (Live_MPAcceptInvite_t)0x420A6D;
|
||||||
Live_ParsePlaylists_t Live_ParsePlaylists = (Live_ParsePlaylists_t)0x4295A0;
|
Live_ParsePlaylists_t Live_ParsePlaylists = (Live_ParsePlaylists_t)0x4295A0;
|
||||||
|
|
||||||
LoadInitialFF_t LoadInitialFF = (LoadInitialFF_t)0x506AC0;
|
|
||||||
LoadModdableRawfile_t LoadModdableRawfile = (LoadModdableRawfile_t)0x61ABC0;
|
LoadModdableRawfile_t LoadModdableRawfile = (LoadModdableRawfile_t)0x61ABC0;
|
||||||
|
|
||||||
LocalizeString_t LocalizeString = (LocalizeString_t)0x4FB010;
|
LocalizeString_t LocalizeString = (LocalizeString_t)0x4FB010;
|
||||||
@ -115,6 +114,7 @@ namespace Game
|
|||||||
R_AddCmdDrawStretchPic_t R_AddCmdDrawStretchPic = (R_AddCmdDrawStretchPic_t)0x509770;
|
R_AddCmdDrawStretchPic_t R_AddCmdDrawStretchPic = (R_AddCmdDrawStretchPic_t)0x509770;
|
||||||
R_RegisterFont_t R_RegisterFont = (R_RegisterFont_t)0x505670;
|
R_RegisterFont_t R_RegisterFont = (R_RegisterFont_t)0x505670;
|
||||||
R_AddCmdDrawText_t R_AddCmdDrawText = (R_AddCmdDrawText_t)0x509D80;
|
R_AddCmdDrawText_t R_AddCmdDrawText = (R_AddCmdDrawText_t)0x509D80;
|
||||||
|
R_LoadGraphicsAssets_t R_LoadGraphicsAssets = (R_LoadGraphicsAssets_t)0x506AC0;
|
||||||
R_TextWidth_t R_TextWidth = (R_TextWidth_t)0x5056C0;
|
R_TextWidth_t R_TextWidth = (R_TextWidth_t)0x5056C0;
|
||||||
R_TextHeight_t R_TextHeight = (R_TextHeight_t)0x505770;
|
R_TextHeight_t R_TextHeight = (R_TextHeight_t)0x505770;
|
||||||
|
|
||||||
|
@ -227,9 +227,6 @@ namespace Game
|
|||||||
typedef void(__cdecl * Live_ParsePlaylists_t)(const char* data);
|
typedef void(__cdecl * Live_ParsePlaylists_t)(const char* data);
|
||||||
extern Live_ParsePlaylists_t Live_ParsePlaylists;
|
extern Live_ParsePlaylists_t Live_ParsePlaylists;
|
||||||
|
|
||||||
typedef void(*LoadInitialFF_t)(void);
|
|
||||||
extern LoadInitialFF_t LoadInitialFF;
|
|
||||||
|
|
||||||
typedef void* (__cdecl * LoadModdableRawfile_t)(int a1, const char* filename);
|
typedef void* (__cdecl * LoadModdableRawfile_t)(int a1, const char* filename);
|
||||||
extern LoadModdableRawfile_t LoadModdableRawfile;
|
extern LoadModdableRawfile_t LoadModdableRawfile;
|
||||||
|
|
||||||
@ -272,6 +269,9 @@ namespace Game
|
|||||||
typedef void(_cdecl * R_AddCmdDrawStretchPic_t)(float x, float y, float w, float h, float xScale, float yScale, float xay, float yay, const float *color, void* material);
|
typedef void(_cdecl * R_AddCmdDrawStretchPic_t)(float x, float y, float w, float h, float xScale, float yScale, float xay, float yay, const float *color, void* material);
|
||||||
extern R_AddCmdDrawStretchPic_t R_AddCmdDrawStretchPic;
|
extern R_AddCmdDrawStretchPic_t R_AddCmdDrawStretchPic;
|
||||||
|
|
||||||
|
typedef void(__cdecl * R_LoadGraphicsAssets_t)();
|
||||||
|
extern R_LoadGraphicsAssets_t R_LoadGraphicsAssets;
|
||||||
|
|
||||||
typedef int(__cdecl * R_TextWidth_t)(const char* text, int maxlength, Font* font);
|
typedef int(__cdecl * R_TextWidth_t)(const char* text, int maxlength, Font* font);
|
||||||
extern R_TextWidth_t R_TextWidth;
|
extern R_TextWidth_t R_TextWidth;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user