mirror of
https://github.com/ptitSeb/box86.git
synced 2025-05-08 21:08:57 +08:00
Use a bigger TLSData by default with forcing emulated gtk (helps steam, I think)
This commit is contained in:
parent
875f1d094d
commit
45d2ac757e
@ -136,7 +136,8 @@ static int sizeDTS(box86context_t* context)
|
||||
}
|
||||
static int sizeTLSData(int s)
|
||||
{
|
||||
return (s+0x1fff)&~0x1fff;
|
||||
uint32_t mask = box86_nogtk?0xffff:0x1fff;
|
||||
return (s+mask)&~mask;
|
||||
}
|
||||
|
||||
static tlsdatasize_t* setupTLSData(box86context_t* context)
|
||||
|
Loading…
x
Reference in New Issue
Block a user