mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ntdll: Fix the fake 32-bit %cs value on ARM64EC.
This commit is contained in:
parent
b7a3023ca1
commit
0d5936563d
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ NTSTATUS WINAPI RtlWow64GetThreadSelectorEntry( HANDLE handle, THREAD_DESCRIPTOR
|
|||
{
|
||||
/* hardcoded values */
|
||||
#ifdef __arm64ec__
|
||||
context.SegCs = 0x33;
|
||||
context.SegCs = 0x23;
|
||||
context.SegSs = 0x2b;
|
||||
context.SegFs = 0x53;
|
||||
#elif defined(__x86_64__)
|
||||
|
|
Loading…
Reference in a new issue