Fixed datatype typos in dolphin.cpp

This commit is contained in:
Michał Mostowik
2020-12-08 14:20:00 +01:00
committed by GitHub
parent 582b42c29e
commit 4557485cab
+3 -3
View File
@@ -11,10 +11,10 @@
#include "dolphin.hpp" #include "dolphin.hpp"
#include "utils/math.hpp" #include "utils/math.hpp"
const u8 WATER_TILE_SCALE = 5.0F; const u8 WATER_TILE_SCALE = 5;
const u8 WATER_SIZE = 100.0F; const u8 WATER_SIZE = 100;
const u8 OYSTERS_COUNT = 15.0F; const u8 OYSTERS_COUNT = 15;
Dolphin::Dolphin(Engine *t_engine) : engine(t_engine), camera(&engine->screen) Dolphin::Dolphin(Engine *t_engine) : engine(t_engine), camera(&engine->screen)
{ {