mirror of https://github.com/stella-emu/stella.git
Fix minor warning in clang.
This commit is contained in:
parent
f3e1e559cf
commit
836137c7fc
|
@ -125,7 +125,7 @@ void FrameBuffer::initialize()
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
const int FrameBuffer::displayId(BufferType bufferType) const
|
int FrameBuffer::displayId(BufferType bufferType) const
|
||||||
{
|
{
|
||||||
const int maxDisplay = int(myWindowedDisplays.size()) - 1;
|
const int maxDisplay = int(myWindowedDisplays.size()) - 1;
|
||||||
int display;
|
int display;
|
||||||
|
|
|
@ -424,7 +424,7 @@ class FrameBuffer
|
||||||
/**
|
/**
|
||||||
Get the display used for the current mode.
|
Get the display used for the current mode.
|
||||||
*/
|
*/
|
||||||
const int displayId(BufferType bufferType = BufferType::None) const;
|
int displayId(BufferType bufferType = BufferType::None) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Build an applicable video mode based on the current settings in
|
Build an applicable video mode based on the current settings in
|
||||||
|
|
Loading…
Reference in New Issue