Minor tweaks to "Memory override" pull request

This commit is contained in:
ocornut
2014-08-31 12:02:22 +01:00
parent 22a9555a99
commit c07ab1b56a
3 changed files with 5 additions and 14 deletions

View File

@ -194,7 +194,6 @@
#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen
#endif
//-------------------------------------------------------------------------
// Forward Declarations
//-------------------------------------------------------------------------
@ -666,7 +665,7 @@ struct ImGuiState
// Logging
bool LogEnabled;
FILE* LogFile;
ImGuiTextBuffer* LogClipboard;
ImGuiTextBuffer* LogClipboard; // pointer so our GImGui static constructor doesn't call heap allocators.
int LogAutoExpandMaxDepth;
ImGuiState()