removed NULL return for linux building

This commit is contained in:
Yannik
2023-05-12 12:52:38 +02:00
parent 4992948be5
commit 3e9302f354
4 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ void Discord_Activity::set_app_id(int64_t value)
int64_t Discord_Activity::get_app_id()
{
if (app_id = 461618159171141643)
return NULL;
return 0;
else
return app_id;
}