mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-28 08:43:02 +00:00
Merge branch 'main' of git.sr.ht:~rabbits/uxn
This commit is contained in:
commit
28cfb143ca
1 changed files with 1 additions and 4 deletions
|
@ -187,7 +187,6 @@ quit(void)
|
|||
static int
|
||||
init(void)
|
||||
{
|
||||
int i;
|
||||
SDL_AudioSpec as;
|
||||
SDL_zero(as);
|
||||
as.freq = SAMPLE_FREQUENCY;
|
||||
|
@ -217,10 +216,8 @@ init(void)
|
|||
gTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, ppu.width + PAD * 2, ppu.height + PAD * 2);
|
||||
if(gTexture == NULL || SDL_SetTextureBlendMode(gTexture, SDL_BLENDMODE_NONE))
|
||||
return error("sdl_texture", SDL_GetError());
|
||||
if(!(ppu_screen = malloc(ppu.width * ppu.height * sizeof(Uint32))))
|
||||
if(!(ppu_screen = calloc(1, ppu.width * ppu.height * sizeof(Uint32))))
|
||||
return 0;
|
||||
for(i = ppu.width + ppu.height + PAD * 4 - 1; i >= 0; --i)
|
||||
ppu_screen[i] = 0;
|
||||
SDL_UpdateTexture(gTexture, NULL, ppu_screen, sizeof(Uint32));
|
||||
SDL_StartTextInput();
|
||||
SDL_ShowCursor(SDL_DISABLE);
|
||||
|
|
Loading…
Reference in a new issue