summaryrefslogtreecommitdiff
path: root/src/train.h
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2022-03-23 18:09:08 -0600
committercflip <cflip@cflip.net>2022-03-23 18:09:08 -0600
commit10b41cc429b5c14023fa3bee0b09040fef1b2929 (patch)
tree4d2a6850b07d4bf60ddadc46fd12a47dc4014c0c /src/train.h
parent47b454c6c2266f17e29797e435e71b2d496885a0 (diff)
Automatically copy resources to build directory
Diffstat (limited to 'src/train.h')
-rw-r--r--src/train.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/train.h b/src/train.h
index 51c2729..3cd23e4 100644
--- a/src/train.h
+++ b/src/train.h
@@ -8,7 +8,7 @@ class Level;
class Train {
public:
explicit Train(Level& level)
- : m_sprite("../res/car.png"), m_level(level) { }
+ : m_sprite("res/car.png"), m_level(level) { }
void update();
void draw(Bitmap&, int, int);