Fog factor correction, small fixes

This commit is contained in:
MihailRis
2023-11-14 22:57:27 +03:00
parent f6c74dfb8b
commit ccbfaa3a86
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
#include <string>
#include "../typedefs.h"
extern std::wstring lfill(std::wstring s, int length, wchar_t c);
extern std::wstring rfill(std::wstring s, int length, wchar_t c);
extern std::wstring lfill(std::wstring s, uint length, wchar_t c);
extern std::wstring rfill(std::wstring s, uint length, wchar_t c);
extern uint encode_utf8(uint c, ubyte* bytes);
extern std::string wstr2str_utf8(const std::wstring ws);