mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-07-11 01:34:17 +02:00
GSDumpGUI: Fix unbalanced stack exception.
This commit is contained in:
@@ -215,7 +215,7 @@ namespace GSDumpGUI
|
||||
|
||||
GSsetGameCRC(dump.CRC, 0);
|
||||
|
||||
NativeMethods.SetClassLong(hWnd,/*GCL_HICON*/ -14, Program.hMainIcon.ToInt32());
|
||||
NativeMethods.SetClassLong(hWnd,/*GCL_HICON*/ -14, (uint)Program.hMainIcon.ToInt32());
|
||||
|
||||
fixed (byte* freeze = dump.StateData)
|
||||
{
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace GSDumpGUI
|
||||
|
||||
[SuppressUnmanagedCodeSecurityAttribute]
|
||||
[DllImport("user32", CharSet = CharSet.Ansi)]
|
||||
public extern static int SetClassLong(IntPtr HWND, int index, long newlong);
|
||||
public extern static int SetClassLong(IntPtr HWND, int index, uint newlong);
|
||||
|
||||
[SuppressUnmanagedCodeSecurityAttribute]
|
||||
[DllImport("user32", CharSet = CharSet.Ansi)]
|
||||
|
||||
Reference in New Issue
Block a user