mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +00:00
Core: Change NULLs to nullptrs.
This commit is contained in:
parent
2134770d7a
commit
48ec42d4a0
5 changed files with 7 additions and 7 deletions
|
@ -51,7 +51,7 @@ void Init()
|
|||
s_perf_map_file.Open(filename, "w");
|
||||
// Disable buffering in order to avoid missing some mappings
|
||||
// if the event of a crash:
|
||||
std::setvbuf(s_perf_map_file.GetHandle(), NULL, _IONBF, 0);
|
||||
std::setvbuf(s_perf_map_file.GetHandle(), nullptr, _IONBF, 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue