Clean up a bit

This commit is contained in:
Miloslav Ciz 2025-06-19 02:28:51 +02:00
parent 610c1df0b0
commit a104a12cc4
14 changed files with 207 additions and 62 deletions

View file

@ -1,12 +1,13 @@
/** @file frontend_helper.h
Helper file for generic PC frontends that can use the stdio library, to avoid
duplication of code.
duplication of code. Just include it.
*/
#include <stdint.h>
#include <stdio.h>
// Before including this file, it's possible to define a quality preset:
#if PRESET_QUALITY == 1 // ultra low
#define LCR_SETTING_RESOLUTION_X 256
#define LCR_SETTING_RESOLUTION_Y 200
@ -86,7 +87,7 @@ void LCR_appendDataStr(const char *str)
else
{
#if LCR_SETTING_LOG_LEVEL > 1
printf("SDL: appending data \"%s\"\n",str);
printf("appending data: \"%s\"\n",str);
#endif
fclose(dataFile);