mirror of https://github.com/stella-emu/stella.git
added display name to display logging
This commit is contained in:
parent
b3195762a3
commit
11fb04aef2
|
@ -94,7 +94,8 @@ void FBBackendSDL2::queryHardware(vector<Common::Size>& fullscreenRes,
|
||||||
int numModes = SDL_GetNumDisplayModes(i);
|
int numModes = SDL_GetNumDisplayModes(i);
|
||||||
ostringstream s;
|
ostringstream s;
|
||||||
|
|
||||||
s << "Supported video modes (" << numModes << ") for display " << i << ":";
|
s << "Supported video modes (" << numModes << ") for display " << i
|
||||||
|
<< " (" << SDL_GetDisplayName(i) << "):";
|
||||||
|
|
||||||
string lastRes = "";
|
string lastRes = "";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue