mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d9] fix non win32 build
This commit is contained in:
parent
b2cbc96b43
commit
d558a97795
1 changed files with 2 additions and 0 deletions
|
@ -29,6 +29,7 @@ namespace dxvk {
|
|||
}
|
||||
|
||||
static bool isExclusiveFullscreenAllowed() {
|
||||
#ifdef _WIN32
|
||||
// KiriKiri Z games rely on GDI for top menu bar
|
||||
// If exclusive FS enabled, display or hide menu will result black flicker
|
||||
// So we disable exclusive FS for KiriKiri Z games
|
||||
|
@ -39,6 +40,7 @@ namespace dxvk {
|
|||
Logger::info("KiriKiri Z game detected, disabling exclusive fullscreen");
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue