Changed boolean into bool in online_service.cpp

It fixes https://github.com/Wargus/stratagus/issues/386 for me
This commit is contained in:
sviscapi 2022-02-26 12:40:15 +01:00 committed by GitHub
parent e75958d2ef
commit b2b81207d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -769,7 +769,7 @@ protected:
void handleUserdata(Context *);
void finishMessage(Context *);
boolean handleGenericMessages(Context *ctx, uint8_t msg) {
bool handleGenericMessages(Context *ctx, uint8_t msg) {
switch (msg) {
case 0x00: // SID_NULL
handleNull(ctx);