Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
testaudiocapture: don't use fullscreen for the window.
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
test/testaudiocapture.c
|
@@ -95,7 +95,7 @@ main(int argc, char **argv) |
|
|
return (1); |
|
|
} |
|
|
|
|
|
window = SDL_CreateWindow("testaudiocapture", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 320, 240, SDL_WINDOW_FULLSCREEN_DESKTOP); |
|
|
window = SDL_CreateWindow("testaudiocapture", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 320, 240, 0); |
|
|
renderer = SDL_CreateRenderer(window, -1, 0); |
|
|
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); |
|
|
SDL_RenderClear(renderer); |
|
|