Browse Source

maxwell_3d: Resolve -Wextra-semi warning

Semicolons after a function definition aren't necessary.
pull/15/merge
Lioncash 5 years ago
parent
commit
83d8bf9af9
  1. 2
      src/video_core/engines/maxwell_3d.h

2
src/video_core/engines/maxwell_3d.h

@ -647,7 +647,7 @@ public:
GetX() + GetWidth(), // right
GetY() // bottom
};
};
}
f32 GetX() const {
return std::max(0.0f, translate_x - std::fabs(scale_x));

Loading…
Cancel
Save