Changeset 29e7cc7 in mainline for uspace/app/gfxdemo/gfxdemo.c


Ignore:
Timestamp:
2025-04-18T15:14:10Z (2 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
e77c3ed
Parents:
800d188 (diff), 25fdb2d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'upstream/master' into helenraid

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/gfxdemo/gfxdemo.c

    r800d188 r29e7cc7  
    11/*
    2  * Copyright (c) 2024 Jiri Svoboda
     2 * Copyright (c) 2025 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    13551355        }
    13561356
    1357         if (i >= argc || str_cmp(argv[i], "display") == 0) {
    1358                 rc = demo_display(display_svc);
     1357        if (i >= argc || str_cmp(argv[i], "ui") == 0) {
     1358                rc = demo_ui(ui_display_spec);
    13591359                if (rc != EOK)
    13601360                        return 1;
     
    13631363                if (rc != EOK)
    13641364                        return 1;
    1365         } else if (str_cmp(argv[i], "ui") == 0) {
    1366                 rc = demo_ui(ui_display_spec);
     1365        } else if (str_cmp(argv[i], "display") == 0) {
     1366                rc = demo_display(display_svc);
    13671367                if (rc != EOK)
    13681368                        return 1;
Note: See TracChangeset for help on using the changeset viewer.