Skip to content

Commit

Permalink
Fix 32-bit windows compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
MadDeCoDeR committed Nov 26, 2023
1 parent 381cea4 commit 2b66287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/sys/win32/win_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ void Sys_GetCallStack(char* Dest)
uint64 dwDisplacement1;
DWORD dwDisplacement2;
#if defined(_M_IX86)
BOOL call1 = SymFromAddr(process, (DWORD)(stack[frame]), &dwDisplacement1, &symbol);
BOOL call1 = SymFromAddr(process, (DWORD)(stack[frame]), &dwDisplacement1, symbol);
BOOL call2 = SymGetLineFromAddr(process, (DWORD)(stack[frame]), &dwDisplacement2, &line);
#else
BOOL call1 = SymFromAddr(process, (DWORD64)(stack[frame]), &dwDisplacement1, symbol);
Expand Down

0 comments on commit 2b66287

Please sign in to comment.