From 799c8cd402960e26f0c173f09c88032cc781b860 Mon Sep 17 00:00:00 2001 From: superp00t Date: Wed, 23 Aug 2023 19:00:20 -0400 Subject: [PATCH] fix(os): specify Blizzard:: namespace when using string utilities --- bc/os/Path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bc/os/Path.cpp b/bc/os/Path.cpp index 5d40e28..465af29 100644 --- a/bc/os/Path.cpp +++ b/bc/os/Path.cpp @@ -44,7 +44,7 @@ void OsGetExeName(char* buffer, size_t chars) { } void OsPathStripFilename(char* path) { - auto length = String::Length(path); + auto length = Blizzard::String::Length(path); char* head = &path[length-1];