mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Resolve GCC Warnings
This commit is contained in:
@ -19,7 +19,10 @@ namespace BPFunctions
|
||||
struct ScissorRange
|
||||
{
|
||||
constexpr ScissorRange() = default;
|
||||
constexpr ScissorRange(int offset, int start, int end) : offset(offset), start(start), end(end) {}
|
||||
constexpr ScissorRange(int offset_, int start_, int end_)
|
||||
: offset(offset_), start(start_), end(end_)
|
||||
{
|
||||
}
|
||||
int offset = 0;
|
||||
int start = 0;
|
||||
int end = 0;
|
||||
|
Reference in New Issue
Block a user