From 1e196df4b3259747a5c470fbf4505b795dd8947c Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Fri, 28 Mar 2014 21:48:12 -0700 Subject: [PATCH] Fix spelling of GetLogicalProcessorInformation in GetProcAddress call - spelling actually matters here. --- src/xenia/core/pal_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/core/pal_win.cc b/src/xenia/core/pal_win.cc index febf87935..3ef63b141 100644 --- a/src/xenia/core/pal_win.cc +++ b/src/xenia/core/pal_win.cc @@ -77,7 +77,7 @@ int xe_pal_get_system_info(xe_system_info* out_info) { kernel32 = GetModuleHandle(TEXT("kernel32")); XEEXPECTNOTNULL(kernel32); - glpi = (LPFN_GLPI)GetProcAddress(kernel32, "GetLogicalProcessorInfomration"); + glpi = (LPFN_GLPI)GetProcAddress(kernel32, "GetLogicalProcessorInformation"); XEEXPECTNOTNULL(glpi); // Call GLPI once to get the buffer size, allocate it, then call again.