diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-11-26 19:42:09 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-11-26 19:42:09 +0100 |
commit | 8f2d0a5a7edb6120c85cb7250e14e2055831a7cb (patch) | |
tree | 2a56e96c0cf36dffe7003e2fdf5f015a82a190a8 /src | |
parent | 15498a9b2b1c0052bcde6b367c1726b1d883cdd2 (diff) |
fixed path
Diffstat (limited to 'src')
-rw-r--r-- | src/test/Profiling.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/Profiling.cpp b/src/test/Profiling.cpp index 59d9ed6..2b03102 100644 --- a/src/test/Profiling.cpp +++ b/src/test/Profiling.cpp @@ -165,7 +165,7 @@ TEST_F(Profiling, Profiling_2) { gameobject.add_component<BehaviorScript>().set_script<TestScript>(); Color color(0, 0, 0, 0); gameobject.add_component<Sprite>( - make_shared<Texture>("/home/jaro/crepe/asset/texture/green_square.png"), color, + make_shared<Texture>("asset/texture/green_square.png"), color, FlipSettings{true, true}); } @@ -197,10 +197,10 @@ TEST_F(Profiling, Profiling_3) { gameobject.add_component<BehaviorScript>().set_script<TestScript>(); Color color(0, 0, 0, 0); gameobject.add_component<Sprite>( - make_shared<Texture>("/home/jaro/crepe/asset/texture/green_square.png"), color, + make_shared<Texture>("asset/texture/green_square.png"), color, FlipSettings{true, true}); Sprite & test_sprite = gameobject.add_component<Sprite>( - make_shared<Texture>("/home/jaro/crepe/asset/texture/img.png"), color, FlipSettings{false, false}); + make_shared<Texture>("asset/texture/img.png"), color, FlipSettings{false, false}); auto & test = gameobject.add_component<ParticleEmitter>(ParticleEmitter::Data{ .max_particles = 10, .emission_rate = 100, |