uvmac/src/UI/CONFIGM.c
InvisibleUp fa4bbacf3a Start implementing "config mode" graphics
I still need to re-do most of the rendering system to throw out all the
jank, but this feels like a half-decent start imo.

Yes, every page is just a separate .png file. I'm lazy. That works.
2020-07-01 22:11:38 -04:00

23 lines
506 B
C

/*
* CONFIG Mode
*
* A replacement for Control Mode, with prettier grapgics and actual settings
*
*/
#include <SDL2.h> // everything else is deprecated now
#include <stdlib.h>
#include <stdint.h>
#include "CONFIGM.h"
#include "UI/SDL2/OSGLUSD2.h"
/* -- Public Functions -- */
void ConfigMode_Tick()
{
// Get the screen context and just draw something there for now
SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255);
SDL_RenderDrawRect(renderer, {.x = 16, .y = 16, .w = 128, .h = 128});
}