Skip to content

Commit

Permalink
main: increase resolution by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Informatic committed Mar 2, 2023
1 parent 39c15e2 commit f499702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ int main (int argc, char** argv) {
loop = g_main_loop_new(NULL, FALSE);

settings.framerate = 30;
settings.width = 1920/4;
settings.height = 1080/4;
settings.width = 1920/2;
settings.height = 1080/2;
settings.password = strdup("password");

INFO("Config load result: %d", settings_load_file(&settings, SETTINGS_PERSISTENCE_PATH));
Expand Down

0 comments on commit f499702

Please sign in to comment.