Skip to content

Commit

Permalink
Fix issue with latest patch of Afterbirth
Browse files Browse the repository at this point in the history
Bumped version to v1.3.1
  • Loading branch information
networkMe committed Nov 4, 2015
1 parent 9a69771 commit 1879698
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions res/DllResources.rc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ MHUD2_ISAAC_FONT_CHARMAP RCDATA "files/MHUD2FontCharmap.texmap"
OPENGL_HUD_SPRITE_VERTEX_SHADER RCDATA "shaders/hud_icon_vert.glsl"
OPENGL_HUD_SPRITE_FRAG_SHADER RCDATA "shaders/hud_icon_frag.glsl"

#define PRODUCT_VER 1,3,0,0
#define PRODUCT_VER_STR "1.3.0"
#define PRODUCT_VER 1,3,1,0
#define PRODUCT_VER_STR "1.3.1"

#ifdef NDEBUG
#define VER_DEBUG 0
Expand Down
4 changes: 2 additions & 2 deletions res/WinResource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

APP_ICON ICON "files/MissingHUD2_Ico.ico"

#define PRODUCT_VER 1,3,0,0
#define PRODUCT_VER_STR "1.3.0"
#define PRODUCT_VER 1,3,1,0
#define PRODUCT_VER_STR "1.3.1"

#ifdef NDEBUG
#define VER_DEBUG 0
Expand Down
2 changes: 1 addition & 1 deletion src/LoaderGUI.ui
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
</font>
</property>
<property name="text">
<string>&lt;a href=&quot;https://github.com/networkMe/missinghud2/releases&quot;&gt;v1.3.0&lt;/a&gt;</string>
<string>&lt;a href=&quot;https://github.com/networkMe/missinghud2/releases&quot;&gt;v1.3.1&lt;/a&gt;</string>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>
Expand Down
32 changes: 16 additions & 16 deletions src/dll/RebirthMemSignatures.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ const static MemSig PlayerManagerPlayerListOffset = {
// 8B 3D F0 42 B9 00 | mov edi,dword ptr ds:[B942F0] | <== We want these 3 addresses
// 8B 1D F4 42 B9 00 | mov ebx,dword ptr ds:[B942F4] | <==
static unsigned char AfterbirthRNGValsSig[] =
{
0x8B, 0x74, 0xBE, 0x18,
0x8B, 0x15, 0x00, 0x00, 0x00, 0x00,
0x8B, 0x3D, 0x00, 0x00, 0x00, 0x00,
0x8B, 0x1D, 0x00, 0x00, 0x00, 0x00
};
{
0x8B, 0x00, 0xBE, 0x18,
0x8B, 0x15, 0x00, 0x00, 0x00, 0x00,
0x8B, 0x3D, 0x00, 0x00, 0x00, 0x00,
0x8B, 0x1D, 0x00, 0x00, 0x00, 0x00
};
const static MemSig AfterbirthRNGVals = {
AfterbirthRNGValsSig,
"bbbbbbvvvvbbvvvvbbvvvv"
AfterbirthRNGValsSig,
"b?bbb?vvvvb?vvvvb?vvvv"
};


Expand All @@ -89,15 +89,15 @@ const static MemSig AfterbirthRNGVals = {
// 2B F0 | sub esi, eax |
// 8B 04 B5 70 D3 B9 00 | mov eax,dword ptr ds:[esi*4+B9D370] | <== Need this address
static unsigned char AfterbirthRNGMapSig[] =
{
0x03, 0xC0,
0x03, 0xC0,
0x2B, 0xF0,
0x8B, 0x04, 0xB5, 0x00, 0x00, 0x00, 0x00
};
{
0x03, 0x00,
0x03, 0x00,
0x2B, 0x00,
0x8B, 0x04, 0xB5, 0x00, 0x00, 0x00, 0x00
};
const static MemSig AfterbirthRNGMap = {
AfterbirthRNGMapSig,
"bbbbbbbbbvvvv"
AfterbirthRNGMapSig,
"b?b?b?bbbvvvv"
};

#endif //MISSINGHUD2_REBIRTHMEMSIGNATURES_H
4 changes: 2 additions & 2 deletions src/mhud2_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
#ifndef MISSINGHUD2_VERSION_H
#define MISSINGHUD2_VERSION_H

#define MHUD2_VERSION "v1.3.0"
#define MHUD2_VERSION "v1.3.1"

#define MHUD2_MAJOR_VERSION 1
#define MHUD2_MINOR_VERSION 3
#define MHUD2_REVISION_VERSION 0
#define MHUD2_REVISION_VERSION 1

#endif //MISSINGHUD2_VERSION_H

0 comments on commit 1879698

Please sign in to comment.