mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Use C++11's in-line member initializers instead of default constructors with initializer lists, for some structs.
--HG-- branch : minor
This commit is contained in:
@@ -111,10 +111,8 @@ private:
|
||||
|
||||
struct _currentMode
|
||||
{
|
||||
_currentMode();
|
||||
|
||||
int width;
|
||||
int height;
|
||||
int width = 800;
|
||||
int height = 600;
|
||||
WindowSettings settings;
|
||||
Object::StrongRef<love::image::ImageData> icon;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user