aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-15 18:14:19 +0100
committerDavid Robillard <d@drobilla.net>2020-03-15 20:53:37 +0100
commit87351f2a8aaaad988b44e985ac5240af43d331e3 (patch)
tree3631d55d2fbf5e8a4e2fe97d4dd3845400d93ddb /test
parent9f1467c2173c487e35522139abc54d583a4078e9 (diff)
Add type and flags to world
Unfortunately this is an API break, but there's no reasonable way to deprecate the old function and this is required for things to work correctly. The type will be used in following commits to tick the main loop and dispatch events correctly for either case.
Diffstat (limited to 'test')
-rw-r--r--test/test_redisplay.c2
-rw-r--r--test/test_show_hide.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/test_redisplay.c b/test/test_redisplay.c
index f5f0707..4470053 100644
--- a/test/test_redisplay.c
+++ b/test/test_redisplay.c
@@ -96,7 +96,7 @@ int
main(int argc, char** argv)
{
PuglTest app = {puglParseTestOptions(&argc, &argv),
- puglNewWorld(),
+ puglNewWorld(PUGL_PROGRAM, 0),
NULL,
START};
diff --git a/test/test_show_hide.c b/test/test_show_hide.c
index 4877388..b942f45 100644
--- a/test/test_show_hide.c
+++ b/test/test_show_hide.c
@@ -107,7 +107,7 @@ int
main(int argc, char** argv)
{
PuglTest test = {puglParseTestOptions(&argc, &argv),
- puglNewWorld(),
+ puglNewWorld(PUGL_PROGRAM, 0),
NULL,
START};