mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-15 10:46:44 -04:00
win: winmain, manifest, icon, and some improvements
This commit is contained in:
parent
f70b29abab
commit
7bea57e587
23 changed files with 203 additions and 140 deletions
|
@ -8,7 +8,7 @@ public:
|
|||
|
||||
constexpr base64_t(const char *charset, char terminator):_terminator(terminator) {
|
||||
for (int i = 0; i < 64; ++i) _charset[i] = charset[i];
|
||||
for (char &c: _charmap) c=-1;
|
||||
for (char &c: _charmap) c=static_cast<char>(-1);
|
||||
for (unsigned int i = 0; i < 64;++i) {
|
||||
int c = _charset[i]-32;
|
||||
_charmap[c] = static_cast<char>(i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue