Data types: DragScalar, InputScalar: default parameters. Added IM_STATIC_ASSERT(). Comments.

This commit is contained in:
omar
2018-05-11 18:55:48 +02:00
parent 0dc18a6ca6
commit fc7fc83f9e
4 changed files with 15 additions and 9 deletions

View File

@ -82,7 +82,7 @@ extern IMGUI_API ImGuiContext* GImGui; // Current implicit ImGui context pointe
#define IM_PI 3.14159265358979323846f
#ifdef _WIN32
#define IM_NEWLINE "\r\n" // Play it nice with Windows users (2018: Notepad _still_ doesn't display files properly when they use Unix-style carriage returns)
#define IM_NEWLINE "\r\n" // Play it nice with Windows users (2018/05 news: Microsoft announced that Notepad will finally display Unix-style carriage returns!)
#else
#define IM_NEWLINE "\n"
#endif