Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed Aug 21, 2024
1 parent 3dfbe6d commit 38a06ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
config: [Debug, Release, Production]
platform: [x64]
env:
MSBUILD_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
MSBUILD_PATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion Lumos/Source/Lumos/Platform/iOS/iOSWindow.mm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
{
LINFO("Creating window - Title : %s, Width : %i, Height : %i", (const char*)properties.Title.str, properties.Width, properties.Height);

m_Data.Title = properties.Title;
m_Data.Title = ToStdString(properties.Title);
m_Data.Width = properties.Width;
m_Data.Height = properties.Height;
m_Data.Exit = false;
Expand Down

0 comments on commit 38a06ea

Please sign in to comment.