Skip to content

Commit

Permalink
fix(ci): fix api changes for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tolstenko committed Jun 11, 2024
1 parent 84f4a6c commit e892a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/engine/Engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void Engine::Tick() {
toDestroy.clear();
}

ImGui_ImplSDLRenderer2_RenderDrawData(ImGui::GetDrawData());
ImGui_ImplSDLRenderer2_RenderDrawData(ImGui::GetDrawData(),window->sdlRenderer);
SDL_RenderPresent(window->sdlRenderer);
}

Expand Down
2 changes: 1 addition & 1 deletion core/scene/Object.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Object {
static void DontDestroyOnLoad(const Object& object){};

public:
std::string ToString(){};
std::string ToString(){return _name;};
};

#endif // MOBAGEN_ENGINE_OBJECT_H_

0 comments on commit e892a04

Please sign in to comment.