Skip to content

Commit

Permalink
fixed enemy
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpop11 committed Oct 6, 2024
1 parent 45dd7c1 commit 1f9b731
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpenGL/src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int main(void) {
glfwSetKeyCallback(window, key_callback);

// Set the window icon
std::string icon_path = Renderer::ResPath() + "Images/Logo2.png";
std::string icon_path = Renderer::ResPath() + "images/Logo2.png";
setWindowIcon(window, icon_path.c_str());

/* Make the window's context current */
Expand Down
2 changes: 1 addition & 1 deletion OpenGL/src/game_objects/enemies/Bomber.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "Bomber.h"

Bomber::Bomber(const std::string& name, float x, float y)
: Character(name, x, y, "Textures/enemy.png") {
: Character(name, x, y, "textures/enemy.png") {
drawPriority = DrawPriority::Character;
health = 1;
}
Expand Down

0 comments on commit 1f9b731

Please sign in to comment.