From 5cfdec7dbf1d4b9b7e21ac2ed05db73725e71fce Mon Sep 17 00:00:00 2001 From: gibbed Date: Wed, 3 Jun 2015 09:50:13 -0500 Subject: [PATCH] Fix a comment. --- src/xenia/kernel/xboxkrnl_strings.cc | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/xenia/kernel/xboxkrnl_strings.cc b/src/xenia/kernel/xboxkrnl_strings.cc index bc19568ca..730712af9 100644 --- a/src/xenia/kernel/xboxkrnl_strings.cc +++ b/src/xenia/kernel/xboxkrnl_strings.cc @@ -71,13 +71,12 @@ class ArgList { virtual uint64_t get64() = 0; }; -/* Making the assumption that the Xbox 360's implementation of the - *printf-functions - * matches what is described on MSDN's documentation for the Windows CRT: - * - * "Format Specification Syntax: printf and wprintf Functions" - * https://msdn.microsoft.com/en-us/library/56e442dc.aspx - */ +// Making the assumption that the Xbox 360's implementation of the +// printf-functions matches what is described on MSDN's documentation for the +// Windows CRT: +// +// "Format Specification Syntax: printf and wprintf Functions" +// https://msdn.microsoft.com/en-us/library/56e442dc.aspx std::string format_double(double value, int32_t precision, uint16_t c, uint32_t flags) {