the final rename

This commit is contained in:
MihailRis
2024-05-06 03:38:19 +03:00
parent f27a418dbe
commit 1627e21c1d
196 changed files with 836 additions and 815 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#include "timeutil.h"
#include "timeutil.hpp"
#include <iostream>
@@ -26,4 +26,4 @@ void timeutil::from_value(float value, int& hour, int& minute, int& second) {
minute = int(value) % 60;
value *= 60;
second = int(value) % 60;
}
}