uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit e9765337f72716cdd52ff7c882173e17e90153e3
parent dff11c296276a8d4efe0924431830e0b436ab6fa
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date:   Sat, 18 Sep 2021 00:00:28 +0100

Initialized border color to black

Diffstat:
Msrc/uxnemu.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/uxnemu.c b/src/uxnemu.c @@ -187,6 +187,7 @@ quit(void) static int init(void) { + int i; SDL_AudioSpec as; SDL_zero(as); as.freq = SAMPLE_FREQUENCY; @@ -218,6 +219,9 @@ init(void) return error("sdl_texture", SDL_GetError()); if(!(ppu_screen = malloc(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); gRect.x = PAD;