minor fixes

This commit is contained in:
Nomango 2020-06-24 18:35:16 +08:00
parent 44267293e0
commit 9d51b1c669
1 changed files with 7 additions and 0 deletions

View File

@ -54,6 +54,13 @@ struct Resolution
uint32_t width = 0; ///< 分辨率宽度
uint32_t height = 0; ///< 分辨率高度
uint32_t refresh_rate = 0; ///< 刷新率
Resolution(uint32_t width, uint32_t height, uint32_t refresh_rate)
: width(width)
, height(height)
, refresh_rate(refresh_rate)
{
}
};
/**