mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-08 14:26:30 +02:00
* GB: integrated SameBoy v0.12.1 by Lior Halphon * SFC: added HG51B169 (Cx4) math tables into bsnes binary
24 lines
525 B
C++
Executable File
24 lines
525 B
C++
Executable File
#if defined(Hiro_Monitor)
|
|
|
|
auto Monitor::count() -> uint {
|
|
return pMonitor::count();
|
|
}
|
|
|
|
auto Monitor::dpi(maybe<uint> monitor) -> Position {
|
|
return pMonitor::dpi(monitor ? monitor() : primary());
|
|
}
|
|
|
|
auto Monitor::geometry(maybe<uint> monitor) -> Geometry {
|
|
return pMonitor::geometry(monitor ? monitor() : primary());
|
|
}
|
|
|
|
auto Monitor::primary() -> uint {
|
|
return pMonitor::primary();
|
|
}
|
|
|
|
auto Monitor::workspace(maybe<uint> monitor) -> Geometry {
|
|
return pMonitor::workspace(monitor ? monitor() : primary());
|
|
}
|
|
|
|
#endif
|