Skip to content

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorton06 committed Jul 26, 2024
1 parent c0f1d0d commit 0d948fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Lumos/Source/Lumos/Graphics/UI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "Core/Application.h"
#include "Core/OS/Window.h"

#include <ImGui/imgui.h>
#include <imgui/imgui.h>

#define HashUIName(Name) Lumos::StringUtilities::BasicHashFromString(Str8C(Name))
#define HashUIStr8Name(Name) Lumos::StringUtilities::BasicHashFromString(Name)
Expand Down
2 changes: 1 addition & 1 deletion Lumos/Source/Lumos/Platform/iOS/iOSOS.mm
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void AudioInterruptionListenerCallback(void* user_data, UInt32 interruption_stat
Lumos::VFS::Get().Mount("Sounds", root + "Sounds");
Lumos::VFS::Get().Mount("Assets", root + "Assets");
*/
LINFO("Device : %s",GetModelName());
LINFO("Device : %s",GetModelName().c_str());

iOSWindow::MakeDefault();

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 @@ -43,7 +43,7 @@

bool iOSWindow::Init(const WindowDesc& properties, const std::string& title)
{
LINFO("Creating window - Title : %s, Width : %i, Height : %i", properties.Title, properties.Width, properties.Height);
LINFO("Creating window - Title : %s, Width : %i, Height : %i", properties.Title.c_str(), properties.Width, properties.Height);

m_Data.Title = properties.Title;
m_Data.Width = properties.Width;
Expand Down

0 comments on commit 0d948fe

Please sign in to comment.